diff --git a/docs/README.md b/docs/README.md index 851e0c3ac..c99f4de6c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,15 +1,7 @@ -# AirStack Boilerplate - -Welcome to the AirStack Boilerplate! This repository template serves to kickstart the development of your own robotics autonomy stack. You're encouraged to customize your version in any way to best suit your project's needs. - -This boilerplate is maintained by the [AirLab](https://theairlab.org) at Carnegie Mellon University's Robotics Institute. - -Please head to our [Getting Started](getting_started.md) page to start. - - - - -![Overview](overview.png) -*AirStack* - - +--- +template: home.html +title: Home +hide: + - navigation + - toc +--- diff --git a/docs/assets/media/splash-background.gif b/docs/assets/media/splash-background.gif new file mode 100644 index 000000000..a0b22dc8c Binary files /dev/null and b/docs/assets/media/splash-background.gif differ diff --git a/docs/overrides/home.html b/docs/overrides/home.html new file mode 100644 index 000000000..c6172f362 --- /dev/null +++ b/docs/overrides/home.html @@ -0,0 +1,100 @@ +{% extends "main.html" %} + +{% block tabs %} + {{ super() }} + + +
+ +
+
+
+ Background Animation +
+
+ + +
+
+
+

Welcome to AirStack

+

A comprehensive robotics autonomy stack boilerplate for accelerating your robotics development

+ + Get Started + + + View on GitHub + +
+
+
+
+{% endblock %} + +{% block content %} +
+
+ +
+
+
+

What is AirStack?

+

+ AirStack is a powerful robotics development boilerplate maintained by the + AirLab at Carnegie Mellon University's + Robotics Institute. It provides a structured foundation for building advanced robotics + applications with: +

+
    +
  • 🤖 Complete Autonomy Stack - From sensors to behavior planning
  • +
  • 🔧 Modular Architecture - Easy to customize and extend
  • +
  • 🚀 Development Tools - Docker support, VSCode integration, and testing frameworks
  • +
  • 📊 Ground Control Station - Built-in monitoring and control interface
  • +
  • 🎮 Simulation Ready - Integrated with Isaac Sim
  • +
  • 🔄 CI/CD Pipeline - Automated testing and deployment
  • +
+
+
+
+ + +
+
+

Key Features

+
+
+
🎯
+

Autonomy Modules

+

Complete suite of autonomy components including perception, planning, and control systems.

+
+
+
🌐
+

Ground Control

+

Built-in ground control station for robot monitoring and control, with multi-robot support.

+
+
+
🎲
+

Simulation

+

Integrated simulation environment with Isaac Sim for testing and development.

+
+
+
🛠️
+

Development Tools

+

Comprehensive development environment with Docker, VSCode, and testing frameworks.

+
+
+
+
+ + +
+
+
+ AirStack Architecture Overview +

AirStack Architecture Overview

+
+
+
+
+
+{% endblock %} diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index c87744e86..be655f3a5 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -2,8 +2,237 @@ --md-primary-fg-color: #EE0F0F; --md-primary-fg-color--light: #ECB7B7; --md-primary-fg-color--dark: #90030C; - } +} - [data-md-color-scheme="slate"] { +[data-md-color-scheme="slate"] { --md-hue: 210; - } +} + +/* Ensure navigation tabs are above splash content */ +.md-tabs { + position: relative; + z-index: 10; +} + +/* Splash container and background */ +.splash-container { + position: relative; + width: 100%; + height: calc(100vh - 98px); /* Subtract header height to prevent overlap */ + min-height: 600px; + overflow: hidden; + margin-top: 0; /* Remove negative margin */ + padding-top: 1rem; /* Add some padding from the navigation */ +} + +.splash-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.media-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); /* Darkens the background media */ + z-index: 2; +} + +.media-container { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.splash-media { + width: 100%; + height: 100%; + object-fit: cover; +} + +/* Hero section */ +.mdx-container { + padding: 1rem; + margin: 0 auto; +} + +.mdx-hero { + position: relative; + z-index: 3; + margin: 0; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + color: white; + padding-top: 5rem; /* Add padding to push content down */ +} + +.mdx-hero h1 { + font-size: 3.5rem; + font-weight: 700; + margin-bottom: 1rem; + line-height: 1.15; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); +} + +.mdx-hero p { + font-size: 1.4rem; + font-weight: 300; + margin-bottom: 2rem; + color: #ffffff; + text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); + max-width: 35rem; + margin-left: auto; + margin-right: auto; +} + +.mdx-hero .md-button { + margin: 0.5rem; + font-size: 1rem; + padding: 0.625em 2em; +} + +.mdx-hero .md-button--primary { + background-color: var(--md-primary-fg-color); + border-color: var(--md-primary-fg-color); + color: var(--md-primary-bg-color); +} + +/* What is section */ +.what-is-section { + margin: 4rem 0; +} + +.what-is-section h2 { + font-size: 2.5rem; + font-weight: 600; + margin-bottom: 1.5rem; + color: var(--md-default-fg-color); +} + +.what-is-section p { + font-size: 1.1rem; + line-height: 1.6; + margin-bottom: 1.5rem; +} + +.feature-list { + list-style: none; + padding: 0; + margin: 2rem 0; +} + +.feature-list li { + font-size: 1.1rem; + margin-bottom: 1rem; + padding-left: 1.5rem; + position: relative; +} + +.feature-list li strong { + color: var(--md-primary-fg-color); +} + +/* Feature grid */ +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased minimum width */ + gap: 2rem; + margin: 2rem 0 4rem; +} + +.feature-card { + background-color: var(--md-default-bg-color); + border: 1px solid var(--md-default-fg-color--lightest); + border-radius: 8px; + padding: 2rem; + transition: all 0.3s ease; + text-align: center; +} + +.feature-card:hover { + transform: translateY(-5px); + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); +} + +.feature-icon { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.feature-card h3 { + font-size: 1.5rem; + font-weight: 600; + margin: 1rem 0; + color: var(--md-primary-fg-color); + white-space: nowrap; /* Prevent text wrapping */ +} + +.feature-card p { + font-size: 1rem; + line-height: 1.5; + color: var(--md-default-fg-color--light); +} + +/* Architecture section */ +.architecture-section { + margin: 4rem 0; + text-align: center; +} + +.architecture-image { + max-width: 100%; + height: auto; + border-radius: 8px; + margin-bottom: 1rem; +} + +.image-caption { + font-size: 1rem; + color: var(--md-default-fg-color--light); +} + +/* Responsive adjustments */ +@media screen and (max-width: 76.1875em) { + .mdx-hero h1 { + font-size: 2.5rem; + } + + .mdx-hero p { + font-size: 1.2rem; + } + + .what-is-section h2 { + font-size: 2rem; + } + + .feature-grid { + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + } +} + +@media screen and (max-width: 600px) { + .mdx-hero h1 { + font-size: 2rem; + } + + .mdx-hero p { + font-size: 1.1rem; + } + + .what-is-section h2 { + font-size: 1.75rem; + } +} diff --git a/mkdocs.log b/mkdocs.log new file mode 100644 index 000000000..a2fedd92c --- /dev/null +++ b/mkdocs.log @@ -0,0 +1,100451 @@ +INFO - Building documentation... +INFO - Cleaning site directory +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.62 seconds +INFO - [00:20:17] Watching paths for changes: '.', 'mkdocs.yml' +INFO - [00:20:17] Serving on http://0.0.0.0:54933/ +INFO - [00:20:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.63 seconds +INFO - [00:20:18] Reloading browsers +INFO - [00:20:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.67 seconds +INFO - [00:20:19] Reloading browsers +INFO - [00:20:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.65 seconds +INFO - [00:20:20] Reloading browsers +INFO - [00:20:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:21] Reloading browsers +INFO - [00:20:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.64 seconds +INFO - [00:20:22] Reloading browsers +INFO - [00:20:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:22] Reloading browsers +INFO - [00:20:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:23] Reloading browsers +INFO - [00:20:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:24] Reloading browsers +INFO - [00:20:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:25] Reloading browsers +INFO - [00:20:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:25] Reloading browsers +INFO - [00:20:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.66 seconds +INFO - [00:20:26] Reloading browsers +INFO - [00:20:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:27] Reloading browsers +INFO - [00:20:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.68 seconds +INFO - [00:20:28] Reloading browsers +INFO - [00:20:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:29] Reloading browsers +INFO - [00:20:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:29] Reloading browsers +INFO - [00:20:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:30] Reloading browsers +INFO - [00:20:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:31] Reloading browsers +INFO - [00:20:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:32] Reloading browsers +INFO - [00:20:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:32] Reloading browsers +INFO - [00:20:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:33] Reloading browsers +INFO - [00:20:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:34] Reloading browsers +INFO - [00:20:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:35] Reloading browsers +INFO - [00:20:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:36] Reloading browsers +INFO - [00:20:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.69 seconds +INFO - [00:20:36] Reloading browsers +INFO - [00:20:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:37] Reloading browsers +INFO - [00:20:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:38] Reloading browsers +INFO - [00:20:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.71 seconds +INFO - [00:20:39] Reloading browsers +INFO - [00:20:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:40] Reloading browsers +INFO - [00:20:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:40] Reloading browsers +INFO - [00:20:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.74 seconds +INFO - [00:20:41] Reloading browsers +INFO - [00:20:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.84 seconds +INFO - [00:20:42] Reloading browsers +INFO - [00:20:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:43] Reloading browsers +INFO - [00:20:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.72 seconds +INFO - [00:20:44] Reloading browsers +INFO - [00:20:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:45] Reloading browsers +INFO - [00:20:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:46] Reloading browsers +INFO - [00:20:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.79 seconds +INFO - [00:20:46] Reloading browsers +INFO - [00:20:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:47] Reloading browsers +INFO - [00:20:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.78 seconds +INFO - [00:20:48] Reloading browsers +INFO - [00:20:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:49] Reloading browsers +INFO - [00:20:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:50] Reloading browsers +INFO - [00:20:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.75 seconds +INFO - [00:20:51] Reloading browsers +INFO - [00:20:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:52] Reloading browsers +INFO - [00:20:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.77 seconds +INFO - [00:20:53] Reloading browsers +INFO - [00:20:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:53] Reloading browsers +INFO - [00:20:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:54] Reloading browsers +INFO - [00:20:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:55] Reloading browsers +INFO - [00:20:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:56] Reloading browsers +INFO - [00:20:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:57] Reloading browsers +INFO - [00:20:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:58] Reloading browsers +INFO - [00:20:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:20:59] Reloading browsers +INFO - [00:20:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.70 seconds +INFO - [00:20:59] Reloading browsers +INFO - [00:20:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:00] Reloading browsers +INFO - [00:21:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:01] Reloading browsers +INFO - [00:21:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:02] Reloading browsers +INFO - [00:21:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:03] Reloading browsers +INFO - [00:21:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:04] Reloading browsers +INFO - [00:21:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:05] Reloading browsers +INFO - [00:21:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:05] Reloading browsers +INFO - [00:21:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:06] Reloading browsers +INFO - [00:21:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:07] Reloading browsers +INFO - [00:21:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:08] Reloading browsers +INFO - [00:21:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:09] Reloading browsers +INFO - [00:21:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:09] Reloading browsers +INFO - [00:21:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:10] Reloading browsers +INFO - [00:21:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:11] Reloading browsers +INFO - [00:21:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:12] Reloading browsers +INFO - [00:21:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:13] Reloading browsers +INFO - [00:21:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:13] Reloading browsers +INFO - [00:21:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:14] Reloading browsers +INFO - [00:21:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:15] Reloading browsers +INFO - [00:21:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:16] Reloading browsers +INFO - [00:21:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:17] Reloading browsers +INFO - [00:21:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:17] Reloading browsers +INFO - [00:21:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.73 seconds +INFO - [00:21:18] Reloading browsers +INFO - [00:21:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:19] Reloading browsers +INFO - [00:21:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:20] Reloading browsers +INFO - [00:21:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:21] Reloading browsers +INFO - [00:21:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:21] Reloading browsers +INFO - [00:21:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:22] Reloading browsers +INFO - [00:21:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:23] Reloading browsers +INFO - [00:21:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:24] Reloading browsers +INFO - [00:21:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:25] Reloading browsers +INFO - [00:21:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.76 seconds +INFO - [00:21:26] Reloading browsers +INFO - [00:21:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:27] Reloading browsers +INFO - [00:21:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:28] Reloading browsers +INFO - [00:21:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:28] Reloading browsers +INFO - [00:21:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:29] Reloading browsers +INFO - [00:21:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:30] Reloading browsers +INFO - [00:21:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:31] Reloading browsers +INFO - [00:21:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:32] Reloading browsers +INFO - [00:21:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:32] Reloading browsers +INFO - [00:21:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:33] Reloading browsers +INFO - [00:21:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:34] Reloading browsers +INFO - [00:21:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:35] Reloading browsers +INFO - [00:21:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:35] Reloading browsers +INFO - [00:21:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:36] Reloading browsers +INFO - [00:21:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:37] Reloading browsers +INFO - [00:21:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:38] Reloading browsers +INFO - [00:21:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:39] Reloading browsers +INFO - [00:21:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:39] Reloading browsers +INFO - [00:21:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:40] Reloading browsers +INFO - [00:21:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:41] Reloading browsers +INFO - [00:21:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:42] Reloading browsers +INFO - [00:21:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:43] Reloading browsers +INFO - [00:21:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:43] Reloading browsers +INFO - [00:21:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:44] Reloading browsers +INFO - [00:21:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:45] Reloading browsers +INFO - [00:21:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:46] Reloading browsers +INFO - [00:21:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:46] Reloading browsers +INFO - [00:21:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:47] Reloading browsers +INFO - [00:21:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:48] Reloading browsers +INFO - [00:21:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:49] Reloading browsers +INFO - [00:21:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:50] Reloading browsers +INFO - [00:21:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:50] Reloading browsers +INFO - [00:21:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:51] Reloading browsers +INFO - [00:21:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:52] Reloading browsers +INFO - [00:21:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:53] Reloading browsers +INFO - [00:21:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:54] Reloading browsers +INFO - [00:21:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:54] Reloading browsers +INFO - [00:21:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:55] Reloading browsers +INFO - [00:21:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:56] Reloading browsers +INFO - [00:21:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:57] Reloading browsers +INFO - [00:21:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:58] Reloading browsers +INFO - [00:21:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:58] Reloading browsers +INFO - [00:21:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:21:59] Reloading browsers +INFO - [00:21:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:00] Reloading browsers +INFO - [00:22:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:01] Reloading browsers +INFO - [00:22:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:01] Reloading browsers +INFO - [00:22:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:02] Reloading browsers +INFO - [00:22:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:03] Reloading browsers +INFO - [00:22:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:04] Reloading browsers +INFO - [00:22:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:05] Reloading browsers +INFO - [00:22:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:05] Reloading browsers +INFO - [00:22:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:06] Reloading browsers +INFO - [00:22:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:07] Reloading browsers +INFO - [00:22:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:08] Reloading browsers +INFO - [00:22:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:09] Reloading browsers +INFO - [00:22:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:09] Reloading browsers +INFO - [00:22:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:10] Reloading browsers +INFO - [00:22:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:11] Reloading browsers +INFO - [00:22:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:12] Reloading browsers +INFO - [00:22:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:12] Reloading browsers +INFO - [00:22:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:13] Reloading browsers +INFO - [00:22:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:14] Reloading browsers +INFO - [00:22:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:15] Reloading browsers +INFO - [00:22:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:16] Reloading browsers +INFO - [00:22:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:16] Reloading browsers +INFO - [00:22:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:17] Reloading browsers +INFO - [00:22:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:18] Reloading browsers +INFO - [00:22:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:19] Reloading browsers +INFO - [00:22:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:20] Reloading browsers +INFO - [00:22:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:20] Reloading browsers +INFO - [00:22:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:21] Reloading browsers +INFO - [00:22:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:22] Reloading browsers +INFO - [00:22:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:23] Reloading browsers +INFO - [00:22:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:24] Reloading browsers +INFO - [00:22:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:24] Reloading browsers +INFO - [00:22:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:25] Reloading browsers +INFO - [00:22:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:26] Reloading browsers +INFO - [00:22:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:27] Reloading browsers +INFO - [00:22:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:27] Reloading browsers +INFO - [00:22:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:28] Reloading browsers +INFO - [00:22:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:29] Reloading browsers +INFO - [00:22:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:30] Reloading browsers +INFO - [00:22:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:31] Reloading browsers +INFO - [00:22:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:31] Reloading browsers +INFO - [00:22:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:32] Reloading browsers +INFO - [00:22:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:33] Reloading browsers +INFO - [00:22:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:34] Reloading browsers +INFO - [00:22:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:35] Reloading browsers +INFO - [00:22:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:35] Reloading browsers +INFO - [00:22:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:36] Reloading browsers +INFO - [00:22:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:37] Reloading browsers +INFO - [00:22:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:38] Reloading browsers +INFO - [00:22:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:39] Reloading browsers +INFO - [00:22:39] Detected file changes +INFO - Building documentation... +INFO - [00:22:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:39] Reloading browsers +INFO - [00:22:39] Detected file changes +INFO - Building documentation... +INFO - [00:22:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:40] Reloading browsers +INFO - [00:22:40] Detected file changes +INFO - [00:22:40] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:41] Reloading browsers +INFO - [00:22:41] Detected file changes +INFO - [00:22:41] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:42] Reloading browsers +INFO - [00:22:42] Detected file changes +INFO - Building documentation... +INFO - [00:22:42] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:43] Reloading browsers +INFO - [00:22:43] Detected file changes +INFO - [00:22:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:44] Reloading browsers +INFO - [00:22:44] Detected file changes +INFO - [00:22:44] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:44] Reloading browsers +INFO - [00:22:44] Detected file changes +INFO - [00:22:45] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:45] Reloading browsers +INFO - [00:22:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:22:46] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:46] Reloading browsers +INFO - [00:22:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:47] Reloading browsers +INFO - [00:22:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:48] Reloading browsers +INFO - [00:22:48] Detected file changes +INFO - [00:22:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:49] Reloading browsers +INFO - [00:22:49] Detected file changes +INFO - Building documentation... +INFO - [00:22:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:49] Reloading browsers +INFO - [00:22:49] Detected file changes +INFO - [00:22:50] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:50] Reloading browsers +INFO - [00:22:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:51] Reloading browsers +INFO - [00:22:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:52] Reloading browsers +INFO - [00:22:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:53] Reloading browsers +INFO - [00:22:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:53] Reloading browsers +INFO - [00:22:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:54] Reloading browsers +INFO - [00:22:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:55] Reloading browsers +INFO - [00:22:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:56] Reloading browsers +INFO - [00:22:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:57] Reloading browsers +INFO - [00:22:57] Detected file changes +INFO - Building documentation... +INFO - [00:22:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:57] Reloading browsers +INFO - [00:22:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:58] Reloading browsers +INFO - [00:22:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:22:59] Reloading browsers +INFO - [00:22:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:00] Reloading browsers +INFO - [00:23:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:01] Reloading browsers +INFO - [00:23:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:02] Reloading browsers +INFO - [00:23:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:02] Reloading browsers +INFO - [00:23:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:03] Reloading browsers +INFO - [00:23:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:04] Reloading browsers +INFO - [00:23:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:05] Reloading browsers +INFO - [00:23:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:06] Reloading browsers +INFO - [00:23:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:06] Reloading browsers +INFO - [00:23:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:07] Reloading browsers +INFO - [00:23:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:08] Reloading browsers +INFO - [00:23:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:09] Reloading browsers +INFO - [00:23:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:10] Reloading browsers +INFO - [00:23:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.80 seconds +INFO - [00:23:11] Reloading browsers +INFO - [00:23:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:12] Reloading browsers +INFO - [00:23:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:12] Reloading browsers +INFO - [00:23:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:13] Reloading browsers +INFO - [00:23:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:14] Reloading browsers +INFO - [00:23:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:15] Reloading browsers +INFO - [00:23:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:16] Reloading browsers +INFO - [00:23:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:17] Reloading browsers +INFO - [00:23:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:17] Reloading browsers +INFO - [00:23:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:18] Reloading browsers +INFO - [00:23:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:19] Reloading browsers +INFO - [00:23:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:20] Reloading browsers +INFO - [00:23:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:21] Reloading browsers +INFO - [00:23:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:22] Reloading browsers +INFO - [00:23:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.82 seconds +INFO - [00:23:22] Reloading browsers +INFO - [00:23:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.85 seconds +INFO - [00:23:23] Reloading browsers +INFO - [00:23:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:24] Reloading browsers +INFO - [00:23:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.83 seconds +INFO - [00:23:25] Reloading browsers +INFO - [00:23:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:26] Reloading browsers +INFO - [00:23:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:27] Reloading browsers +INFO - [00:23:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:28] Reloading browsers +INFO - [00:23:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:29] Reloading browsers +INFO - [00:23:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:30] Reloading browsers +INFO - [00:23:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:31] Reloading browsers +INFO - [00:23:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:32] Reloading browsers +INFO - [00:23:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:32] Reloading browsers +INFO - [00:23:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:33] Reloading browsers +INFO - [00:23:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.97 seconds +INFO - [00:23:34] Reloading browsers +INFO - [00:23:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:35] Reloading browsers +INFO - [00:23:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.90 seconds +INFO - [00:23:37] Reloading browsers +INFO - [00:23:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:38] Reloading browsers +INFO - [00:23:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:39] Reloading browsers +INFO - [00:23:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:40] Reloading browsers +INFO - [00:23:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:40] Reloading browsers +INFO - [00:23:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:41] Reloading browsers +INFO - [00:23:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:42] Reloading browsers +INFO - [00:23:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:43] Reloading browsers +INFO - [00:23:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:44] Reloading browsers +INFO - [00:23:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:45] Reloading browsers +INFO - [00:23:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:46] Reloading browsers +INFO - [00:23:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:46] Reloading browsers +INFO - [00:23:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:47] Reloading browsers +INFO - [00:23:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:48] Reloading browsers +INFO - [00:23:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:49] Reloading browsers +INFO - [00:23:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:50] Reloading browsers +INFO - [00:23:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:51] Reloading browsers +INFO - [00:23:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:52] Reloading browsers +INFO - [00:23:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:53] Reloading browsers +INFO - [00:23:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:54] Reloading browsers +INFO - [00:23:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:54] Reloading browsers +INFO - [00:23:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:55] Reloading browsers +INFO - [00:23:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:56] Reloading browsers +INFO - [00:23:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:57] Reloading browsers +INFO - [00:23:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:58] Reloading browsers +INFO - [00:23:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:59] Reloading browsers +INFO - [00:23:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:23:59] Reloading browsers +INFO - [00:23:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:00] Reloading browsers +INFO - [00:24:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:01] Reloading browsers +INFO - [00:24:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:02] Reloading browsers +INFO - [00:24:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:03] Reloading browsers +INFO - [00:24:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:04] Reloading browsers +INFO - [00:24:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:04] Reloading browsers +INFO - [00:24:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:05] Reloading browsers +INFO - [00:24:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:06] Reloading browsers +INFO - [00:24:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:07] Reloading browsers +INFO - [00:24:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:08] Reloading browsers +INFO - [00:24:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:08] Reloading browsers +INFO - [00:24:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:09] Reloading browsers +INFO - [00:24:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:10] Reloading browsers +INFO - [00:24:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:11] Reloading browsers +INFO - [00:24:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:12] Reloading browsers +INFO - [00:24:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:13] Reloading browsers +INFO - [00:24:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:13] Reloading browsers +INFO - [00:24:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:14] Reloading browsers +INFO - [00:24:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:15] Reloading browsers +INFO - [00:24:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:16] Reloading browsers +INFO - [00:24:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:17] Reloading browsers +INFO - [00:24:17] Detected file changes +INFO - Building documentation... +INFO - [00:24:17] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:17] Reloading browsers +INFO - [00:24:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:18] Reloading browsers +INFO - [00:24:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:19] Reloading browsers +INFO - [00:24:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:20] Reloading browsers +INFO - [00:24:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:21] Reloading browsers +INFO - [00:24:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:21] Reloading browsers +INFO - [00:24:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:22] Reloading browsers +INFO - [00:24:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:23] Reloading browsers +INFO - [00:24:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:24] Reloading browsers +INFO - [00:24:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:25] Reloading browsers +INFO - [00:24:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:25] Reloading browsers +INFO - [00:24:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:26] Reloading browsers +INFO - [00:24:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:27] Reloading browsers +INFO - [00:24:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:28] Reloading browsers +INFO - [00:24:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:28] Reloading browsers +INFO - [00:24:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:29] Reloading browsers +INFO - [00:24:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:30] Reloading browsers +INFO - [00:24:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:31] Reloading browsers +INFO - [00:24:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:32] Reloading browsers +INFO - [00:24:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:32] Reloading browsers +INFO - [00:24:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:33] Reloading browsers +INFO - [00:24:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:34] Reloading browsers +INFO - [00:24:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:35] Reloading browsers +INFO - [00:24:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:36] Reloading browsers +INFO - [00:24:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:37] Reloading browsers +INFO - [00:24:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:37] Reloading browsers +INFO - [00:24:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:38] Reloading browsers +INFO - [00:24:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:39] Reloading browsers +INFO - [00:24:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:40] Reloading browsers +INFO - [00:24:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:40] Reloading browsers +INFO - [00:24:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:41] Reloading browsers +INFO - [00:24:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:42] Reloading browsers +INFO - [00:24:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:43] Reloading browsers +INFO - [00:24:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:44] Reloading browsers +INFO - [00:24:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:45] Reloading browsers +INFO - [00:24:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:45] Reloading browsers +INFO - [00:24:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:46] Reloading browsers +INFO - [00:24:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:47] Reloading browsers +INFO - [00:24:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:48] Reloading browsers +INFO - [00:24:48] Detected file changes +INFO - [00:24:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:49] Reloading browsers +INFO - [00:24:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:49] Reloading browsers +INFO - [00:24:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:50] Reloading browsers +INFO - [00:24:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:51] Reloading browsers +INFO - [00:24:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:52] Reloading browsers +INFO - [00:24:52] Detected file changes +INFO - Building documentation... +INFO - [00:24:52] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:52] Reloading browsers +INFO - [00:24:52] Detected file changes +INFO - [00:24:53] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:53] Reloading browsers +INFO - [00:24:53] Detected file changes +INFO - Building documentation... +INFO - [00:24:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:54] Reloading browsers +INFO - [00:24:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:55] Reloading browsers +INFO - [00:24:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:55] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:56] Reloading browsers +INFO - [00:24:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:57] Reloading browsers +INFO - [00:24:57] Detected file changes +INFO - Building documentation... +INFO - [00:24:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:57] Reloading browsers +INFO - [00:24:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:24:58] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:58] Reloading browsers +INFO - [00:24:58] Detected file changes +INFO - Building documentation... +INFO - [00:24:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:24:59] Reloading browsers +INFO - [00:24:59] Detected file changes +INFO - Building documentation... +INFO - [00:24:59] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:00] Reloading browsers +INFO - [00:25:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:01] Reloading browsers +INFO - [00:25:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:01] Reloading browsers +INFO - [00:25:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:02] Reloading browsers +INFO - [00:25:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:03] Reloading browsers +INFO - [00:25:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:04] Reloading browsers +INFO - [00:25:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:05] Reloading browsers +INFO - [00:25:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:05] Reloading browsers +INFO - [00:25:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:06] Reloading browsers +INFO - [00:25:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:07] Reloading browsers +INFO - [00:25:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:08] Reloading browsers +INFO - [00:25:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:09] Reloading browsers +INFO - [00:25:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:09] Reloading browsers +INFO - [00:25:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:10] Reloading browsers +INFO - [00:25:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:11] Reloading browsers +INFO - [00:25:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:12] Reloading browsers +INFO - [00:25:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:12] Reloading browsers +INFO - [00:25:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:13] Reloading browsers +INFO - [00:25:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:14] Reloading browsers +INFO - [00:25:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:15] Reloading browsers +INFO - [00:25:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:16] Reloading browsers +INFO - [00:25:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:16] Reloading browsers +INFO - [00:25:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:17] Reloading browsers +INFO - [00:25:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:18] Reloading browsers +INFO - [00:25:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:19] Reloading browsers +INFO - [00:25:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:20] Reloading browsers +INFO - [00:25:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:20] Reloading browsers +INFO - [00:25:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:21] Reloading browsers +INFO - [00:25:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:22] Reloading browsers +INFO - [00:25:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:23] Reloading browsers +INFO - [00:25:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:23] Reloading browsers +INFO - [00:25:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:24] Reloading browsers +INFO - [00:25:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:25] Reloading browsers +INFO - [00:25:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:26] Reloading browsers +INFO - [00:25:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:27] Reloading browsers +INFO - [00:25:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:27] Reloading browsers +INFO - [00:25:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:28] Reloading browsers +INFO - [00:25:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:29] Reloading browsers +INFO - [00:25:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:30] Reloading browsers +INFO - [00:25:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:31] Reloading browsers +INFO - [00:25:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:31] Reloading browsers +INFO - [00:25:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:32] Reloading browsers +INFO - [00:25:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:33] Reloading browsers +INFO - [00:25:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:34] Reloading browsers +INFO - [00:25:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:35] Reloading browsers +INFO - [00:25:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:36] Reloading browsers +INFO - [00:25:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:36] Reloading browsers +INFO - [00:25:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:37] Reloading browsers +INFO - [00:25:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:38] Reloading browsers +INFO - [00:25:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:39] Reloading browsers +INFO - [00:25:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:39] Reloading browsers +INFO - [00:25:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:40] Reloading browsers +INFO - [00:25:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:41] Reloading browsers +INFO - [00:25:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:42] Reloading browsers +INFO - [00:25:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:43] Reloading browsers +INFO - [00:25:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:43] Reloading browsers +INFO - [00:25:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:44] Reloading browsers +INFO - [00:25:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:45] Reloading browsers +INFO - [00:25:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:46] Reloading browsers +INFO - [00:25:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:47] Reloading browsers +INFO - [00:25:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:47] Reloading browsers +INFO - [00:25:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:48] Reloading browsers +INFO - [00:25:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:49] Reloading browsers +INFO - [00:25:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:50] Reloading browsers +INFO - [00:25:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:51] Reloading browsers +INFO - [00:25:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:51] Reloading browsers +INFO - [00:25:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:52] Reloading browsers +INFO - [00:25:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:53] Reloading browsers +INFO - [00:25:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:54] Reloading browsers +INFO - [00:25:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:54] Reloading browsers +INFO - [00:25:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:55] Reloading browsers +INFO - [00:25:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:56] Reloading browsers +INFO - [00:25:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:57] Reloading browsers +INFO - [00:25:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:58] Reloading browsers +INFO - [00:25:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:25:59] Reloading browsers +INFO - [00:25:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:00] Reloading browsers +INFO - [00:26:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:00] Reloading browsers +INFO - [00:26:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:01] Reloading browsers +INFO - [00:26:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:02] Reloading browsers +INFO - [00:26:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:03] Reloading browsers +INFO - [00:26:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:03] Reloading browsers +INFO - [00:26:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:04] Reloading browsers +INFO - [00:26:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:05] Reloading browsers +INFO - [00:26:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:06] Reloading browsers +INFO - [00:26:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:07] Reloading browsers +INFO - [00:26:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:07] Reloading browsers +INFO - [00:26:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:08] Reloading browsers +INFO - [00:26:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:09] Reloading browsers +INFO - [00:26:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:10] Reloading browsers +INFO - [00:26:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:11] Reloading browsers +INFO - [00:26:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:11] Reloading browsers +INFO - [00:26:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:12] Reloading browsers +INFO - [00:26:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:13] Reloading browsers +INFO - [00:26:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:14] Reloading browsers +INFO - [00:26:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:15] Reloading browsers +INFO - [00:26:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:15] Reloading browsers +INFO - [00:26:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:16] Reloading browsers +INFO - [00:26:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:17] Reloading browsers +INFO - [00:26:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:18] Reloading browsers +INFO - [00:26:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:19] Reloading browsers +INFO - [00:26:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:20] Reloading browsers +INFO - [00:26:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.88 seconds +INFO - [00:26:21] Reloading browsers +INFO - [00:26:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:22] Reloading browsers +INFO - [00:26:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:23] Reloading browsers +INFO - [00:26:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:24] Reloading browsers +INFO - [00:26:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:24] Reloading browsers +INFO - [00:26:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:25] Reloading browsers +INFO - [00:26:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:26] Reloading browsers +INFO - [00:26:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:27] Reloading browsers +INFO - [00:26:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:28] Reloading browsers +INFO - [00:26:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:29] Reloading browsers +INFO - [00:26:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:30] Reloading browsers +INFO - [00:26:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:30] Reloading browsers +INFO - [00:26:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:31] Reloading browsers +INFO - [00:26:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:32] Reloading browsers +INFO - [00:26:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:33] Reloading browsers +INFO - [00:26:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:34] Reloading browsers +INFO - [00:26:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:35] Reloading browsers +INFO - [00:26:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:35] Reloading browsers +INFO - [00:26:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:36] Reloading browsers +INFO - [00:26:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:37] Reloading browsers +INFO - [00:26:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:38] Reloading browsers +INFO - [00:26:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:39] Reloading browsers +INFO - [00:26:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:40] Reloading browsers +INFO - [00:26:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:41] Reloading browsers +INFO - [00:26:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:42] Reloading browsers +INFO - [00:26:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:42] Reloading browsers +INFO - [00:26:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:43] Reloading browsers +INFO - [00:26:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:44] Reloading browsers +INFO - [00:26:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:45] Reloading browsers +INFO - [00:26:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:46] Reloading browsers +INFO - [00:26:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:47] Reloading browsers +INFO - [00:26:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:48] Reloading browsers +INFO - [00:26:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:48] Reloading browsers +INFO - [00:26:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:49] Reloading browsers +INFO - [00:26:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:50] Reloading browsers +INFO - [00:26:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:51] Reloading browsers +INFO - [00:26:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:52] Reloading browsers +INFO - [00:26:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:52] Reloading browsers +INFO - [00:26:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:53] Reloading browsers +INFO - [00:26:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:54] Reloading browsers +INFO - [00:26:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:55] Reloading browsers +INFO - [00:26:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:56] Reloading browsers +INFO - [00:26:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:56] Reloading browsers +INFO - [00:26:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:57] Reloading browsers +INFO - [00:26:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:58] Reloading browsers +INFO - [00:26:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:26:59] Reloading browsers +INFO - [00:26:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:00] Reloading browsers +INFO - [00:27:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:01] Reloading browsers +INFO - [00:27:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:02] Reloading browsers +INFO - [00:27:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:02] Reloading browsers +INFO - [00:27:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:03] Reloading browsers +INFO - [00:27:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:04] Reloading browsers +INFO - [00:27:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:05] Reloading browsers +INFO - [00:27:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:06] Reloading browsers +INFO - [00:27:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:07] Reloading browsers +INFO - [00:27:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:07] Reloading browsers +INFO - [00:27:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:08] Reloading browsers +INFO - [00:27:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:09] Reloading browsers +INFO - [00:27:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:10] Reloading browsers +INFO - [00:27:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:11] Reloading browsers +INFO - [00:27:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:11] Reloading browsers +INFO - [00:27:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:12] Reloading browsers +INFO - [00:27:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:13] Reloading browsers +INFO - [00:27:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:14] Reloading browsers +INFO - [00:27:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:15] Reloading browsers +INFO - [00:27:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:16] Reloading browsers +INFO - [00:27:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:16] Reloading browsers +INFO - [00:27:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:17] Reloading browsers +INFO - [00:27:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:18] Reloading browsers +INFO - [00:27:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:19] Reloading browsers +INFO - [00:27:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:20] Reloading browsers +INFO - [00:27:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:20] Reloading browsers +INFO - [00:27:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:21] Reloading browsers +INFO - [00:27:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:22] Reloading browsers +INFO - [00:27:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:23] Reloading browsers +INFO - [00:27:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:24] Reloading browsers +INFO - [00:27:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:24] Reloading browsers +INFO - [00:27:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:25] Reloading browsers +INFO - [00:27:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:26] Reloading browsers +INFO - [00:27:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:27] Reloading browsers +INFO - [00:27:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:28] Reloading browsers +INFO - [00:27:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:28] Reloading browsers +INFO - [00:27:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:29] Reloading browsers +INFO - [00:27:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:30] Reloading browsers +INFO - [00:27:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:31] Reloading browsers +INFO - [00:27:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:32] Reloading browsers +INFO - [00:27:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:32] Reloading browsers +INFO - [00:27:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:33] Reloading browsers +INFO - [00:27:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:34] Reloading browsers +INFO - [00:27:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:35] Reloading browsers +INFO - [00:27:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:36] Reloading browsers +INFO - [00:27:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:36] Reloading browsers +INFO - [00:27:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:37] Reloading browsers +INFO - [00:27:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:38] Reloading browsers +INFO - [00:27:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:39] Reloading browsers +INFO - [00:27:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:40] Reloading browsers +INFO - [00:27:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:40] Reloading browsers +INFO - [00:27:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:41] Reloading browsers +INFO - [00:27:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:42] Reloading browsers +INFO - [00:27:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:43] Reloading browsers +INFO - [00:27:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:44] Reloading browsers +INFO - [00:27:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:44] Reloading browsers +INFO - [00:27:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:45] Reloading browsers +INFO - [00:27:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:46] Reloading browsers +INFO - [00:27:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:47] Reloading browsers +INFO - [00:27:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:48] Reloading browsers +INFO - [00:27:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:48] Reloading browsers +INFO - [00:27:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:49] Reloading browsers +INFO - [00:27:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:50] Reloading browsers +INFO - [00:27:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:51] Reloading browsers +INFO - [00:27:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:52] Reloading browsers +INFO - [00:27:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:52] Reloading browsers +INFO - [00:27:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:53] Reloading browsers +INFO - [00:27:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:54] Reloading browsers +INFO - [00:27:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:55] Reloading browsers +INFO - [00:27:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:56] Reloading browsers +INFO - [00:27:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:56] Reloading browsers +INFO - [00:27:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:57] Reloading browsers +INFO - [00:27:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:58] Reloading browsers +INFO - [00:27:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:27:59] Reloading browsers +INFO - [00:27:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:00] Reloading browsers +INFO - [00:28:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:00] Reloading browsers +INFO - [00:28:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:01] Reloading browsers +INFO - [00:28:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:02] Reloading browsers +INFO - [00:28:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:03] Reloading browsers +INFO - [00:28:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:04] Reloading browsers +INFO - [00:28:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:04] Reloading browsers +INFO - [00:28:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:05] Reloading browsers +INFO - [00:28:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:06] Reloading browsers +INFO - [00:28:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:07] Reloading browsers +INFO - [00:28:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:07] Reloading browsers +INFO - [00:28:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:08] Reloading browsers +INFO - [00:28:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:09] Reloading browsers +INFO - [00:28:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:10] Reloading browsers +INFO - [00:28:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:11] Reloading browsers +INFO - [00:28:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:12] Reloading browsers +INFO - [00:28:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:12] Reloading browsers +INFO - [00:28:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:13] Reloading browsers +INFO - [00:28:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:14] Reloading browsers +INFO - [00:28:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:15] Reloading browsers +INFO - [00:28:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:16] Reloading browsers +INFO - [00:28:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:16] Reloading browsers +INFO - [00:28:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:17] Reloading browsers +INFO - [00:28:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:18] Reloading browsers +INFO - [00:28:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:19] Reloading browsers +INFO - [00:28:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:20] Reloading browsers +INFO - [00:28:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:20] Reloading browsers +INFO - [00:28:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:21] Reloading browsers +INFO - [00:28:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:22] Reloading browsers +INFO - [00:28:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:23] Reloading browsers +INFO - [00:28:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:24] Reloading browsers +INFO - [00:28:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:25] Reloading browsers +INFO - [00:28:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:25] Reloading browsers +INFO - [00:28:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:26] Reloading browsers +INFO - [00:28:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:27] Reloading browsers +INFO - [00:28:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:28] Reloading browsers +INFO - [00:28:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:29] Reloading browsers +INFO - [00:28:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:29] Reloading browsers +INFO - [00:28:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:30] Reloading browsers +INFO - [00:28:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:31] Reloading browsers +INFO - [00:28:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:32] Reloading browsers +INFO - [00:28:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:32] Reloading browsers +INFO - [00:28:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:33] Reloading browsers +INFO - [00:28:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:34] Reloading browsers +INFO - [00:28:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:35] Reloading browsers +INFO - [00:28:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:36] Reloading browsers +INFO - [00:28:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:36] Reloading browsers +INFO - [00:28:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:37] Reloading browsers +INFO - [00:28:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:38] Reloading browsers +INFO - [00:28:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:39] Reloading browsers +INFO - [00:28:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:39] Reloading browsers +INFO - [00:28:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:40] Reloading browsers +INFO - [00:28:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:41] Reloading browsers +INFO - [00:28:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:42] Reloading browsers +INFO - [00:28:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:43] Reloading browsers +INFO - [00:28:43] Detected file changes +INFO - [00:28:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:43] Reloading browsers +INFO - [00:28:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:44] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:44] Reloading browsers +INFO - [00:28:44] Detected file changes +INFO - Building documentation... +INFO - [00:28:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:45] Reloading browsers +INFO - [00:28:45] Detected file changes +INFO - Building documentation... +INFO - [00:28:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:46] Reloading browsers +INFO - [00:28:46] Detected file changes +INFO - [00:28:46] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:47] Reloading browsers +INFO - [00:28:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:47] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:48] Reloading browsers +INFO - [00:28:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:48] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:49] Reloading browsers +INFO - [00:28:49] Detected file changes +INFO - [00:28:49] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:50] Reloading browsers +INFO - [00:28:50] Detected file changes +INFO - Building documentation... +INFO - [00:28:50] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:50] Reloading browsers +INFO - [00:28:50] Detected file changes +INFO - [00:28:51] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:51] Reloading browsers +INFO - [00:28:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:28:52] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:52] Reloading browsers +INFO - [00:28:52] Detected file changes +INFO - [00:28:52] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:53] Reloading browsers +INFO - [00:28:53] Detected file changes +INFO - Building documentation... +INFO - [00:28:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:54] Reloading browsers +INFO - [00:28:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:55] Reloading browsers +INFO - [00:28:55] Detected file changes +INFO - Building documentation... +INFO - [00:28:55] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:56] Reloading browsers +INFO - [00:28:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:56] Reloading browsers +INFO - [00:28:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:28:57] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:57] Reloading browsers +INFO - [00:28:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:58] Reloading browsers +INFO - [00:28:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:28:59] Reloading browsers +INFO - [00:28:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:00] Reloading browsers +INFO - [00:29:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:00] Reloading browsers +INFO - [00:29:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:01] Reloading browsers +INFO - [00:29:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:02] Reloading browsers +INFO - [00:29:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:03] Reloading browsers +INFO - [00:29:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:04] Reloading browsers +INFO - [00:29:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:04] Reloading browsers +INFO - [00:29:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:05] Reloading browsers +INFO - [00:29:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:06] Reloading browsers +INFO - [00:29:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:07] Reloading browsers +INFO - [00:29:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:08] Reloading browsers +INFO - [00:29:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:09] Reloading browsers +INFO - [00:29:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:09] Reloading browsers +INFO - [00:29:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:10] Reloading browsers +INFO - [00:29:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:11] Reloading browsers +INFO - [00:29:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:12] Reloading browsers +INFO - [00:29:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:13] Reloading browsers +INFO - [00:29:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:14] Reloading browsers +INFO - [00:29:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:14] Reloading browsers +INFO - [00:29:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:15] Reloading browsers +INFO - [00:29:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:16] Reloading browsers +INFO - [00:29:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:17] Reloading browsers +INFO - [00:29:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:18] Reloading browsers +INFO - [00:29:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:18] Reloading browsers +INFO - [00:29:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:19] Reloading browsers +INFO - [00:29:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:20] Reloading browsers +INFO - [00:29:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:21] Reloading browsers +INFO - [00:29:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:22] Reloading browsers +INFO - [00:29:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:23] Reloading browsers +INFO - [00:29:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:23] Reloading browsers +INFO - [00:29:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:24] Reloading browsers +INFO - [00:29:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:25] Reloading browsers +INFO - [00:29:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:26] Reloading browsers +INFO - [00:29:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.81 seconds +INFO - [00:29:27] Reloading browsers +INFO - [00:29:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:28] Reloading browsers +INFO - [00:29:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:29] Reloading browsers +INFO - [00:29:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:29] Reloading browsers +INFO - [00:29:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:30] Reloading browsers +INFO - [00:29:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:31] Reloading browsers +INFO - [00:29:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:32] Reloading browsers +INFO - [00:29:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:33] Reloading browsers +INFO - [00:29:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:34] Reloading browsers +INFO - [00:29:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:34] Reloading browsers +INFO - [00:29:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:35] Reloading browsers +INFO - [00:29:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:36] Reloading browsers +INFO - [00:29:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.01 seconds +INFO - [00:29:37] Reloading browsers +INFO - [00:29:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:38] Reloading browsers +INFO - [00:29:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:39] Reloading browsers +INFO - [00:29:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:40] Reloading browsers +INFO - [00:29:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:41] Reloading browsers +INFO - [00:29:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:42] Reloading browsers +INFO - [00:29:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:42] Reloading browsers +INFO - [00:29:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:43] Reloading browsers +INFO - [00:29:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:44] Reloading browsers +INFO - [00:29:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:45] Reloading browsers +INFO - [00:29:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:46] Reloading browsers +INFO - [00:29:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:47] Reloading browsers +INFO - [00:29:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:47] Reloading browsers +INFO - [00:29:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:48] Reloading browsers +INFO - [00:29:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:49] Reloading browsers +INFO - [00:29:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:50] Reloading browsers +INFO - [00:29:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:51] Reloading browsers +INFO - [00:29:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:51] Reloading browsers +INFO - [00:29:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:52] Reloading browsers +INFO - [00:29:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:53] Reloading browsers +INFO - [00:29:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:54] Reloading browsers +INFO - [00:29:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:55] Reloading browsers +INFO - [00:29:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:56] Reloading browsers +INFO - [00:29:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:56] Reloading browsers +INFO - [00:29:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:57] Reloading browsers +INFO - [00:29:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:58] Reloading browsers +INFO - [00:29:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:29:59] Reloading browsers +INFO - [00:29:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:00] Reloading browsers +INFO - [00:30:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:01] Reloading browsers +INFO - [00:30:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:02] Reloading browsers +INFO - [00:30:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:02] Reloading browsers +INFO - [00:30:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:03] Reloading browsers +INFO - [00:30:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:04] Reloading browsers +INFO - [00:30:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:05] Reloading browsers +INFO - [00:30:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:06] Reloading browsers +INFO - [00:30:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:07] Reloading browsers +INFO - [00:30:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:07] Reloading browsers +INFO - [00:30:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:08] Reloading browsers +INFO - [00:30:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:09] Reloading browsers +INFO - [00:30:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:10] Reloading browsers +INFO - [00:30:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:11] Reloading browsers +INFO - [00:30:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:12] Reloading browsers +INFO - [00:30:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:13] Reloading browsers +INFO - [00:30:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:14] Reloading browsers +INFO - [00:30:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:15] Reloading browsers +INFO - [00:30:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:15] Reloading browsers +INFO - [00:30:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:16] Reloading browsers +INFO - [00:30:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:17] Reloading browsers +INFO - [00:30:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:18] Reloading browsers +INFO - [00:30:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:18] Reloading browsers +INFO - [00:30:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:19] Reloading browsers +INFO - [00:30:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:20] Reloading browsers +INFO - [00:30:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:21] Reloading browsers +INFO - [00:30:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:22] Reloading browsers +INFO - [00:30:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:23] Reloading browsers +INFO - [00:30:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:24] Reloading browsers +INFO - [00:30:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:24] Reloading browsers +INFO - [00:30:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:25] Reloading browsers +INFO - [00:30:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:26] Reloading browsers +INFO - [00:30:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:27] Reloading browsers +INFO - [00:30:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:28] Reloading browsers +INFO - [00:30:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:29] Reloading browsers +INFO - [00:30:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:29] Reloading browsers +INFO - [00:30:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:30] Reloading browsers +INFO - [00:30:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:31] Reloading browsers +INFO - [00:30:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:32] Reloading browsers +INFO - [00:30:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:33] Reloading browsers +INFO - [00:30:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:34] Reloading browsers +INFO - [00:30:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:34] Reloading browsers +INFO - [00:30:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:35] Reloading browsers +INFO - [00:30:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:36] Reloading browsers +INFO - [00:30:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:37] Reloading browsers +INFO - [00:30:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:38] Reloading browsers +INFO - [00:30:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:38] Reloading browsers +INFO - [00:30:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:39] Reloading browsers +INFO - [00:30:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:40] Reloading browsers +INFO - [00:30:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:41] Reloading browsers +INFO - [00:30:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:42] Reloading browsers +INFO - [00:30:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:42] Reloading browsers +INFO - [00:30:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:43] Reloading browsers +INFO - [00:30:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:44] Reloading browsers +INFO - [00:30:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:45] Reloading browsers +INFO - [00:30:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:46] Reloading browsers +INFO - [00:30:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:47] Reloading browsers +INFO - [00:30:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:47] Reloading browsers +INFO - [00:30:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:48] Reloading browsers +INFO - [00:30:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:49] Reloading browsers +INFO - [00:30:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:50] Reloading browsers +INFO - [00:30:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:51] Reloading browsers +INFO - [00:30:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:51] Reloading browsers +INFO - [00:30:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:52] Reloading browsers +INFO - [00:30:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:53] Reloading browsers +INFO - [00:30:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:54] Reloading browsers +INFO - [00:30:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:55] Reloading browsers +INFO - [00:30:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:55] Reloading browsers +INFO - [00:30:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:56] Reloading browsers +INFO - [00:30:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:57] Reloading browsers +INFO - [00:30:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:58] Reloading browsers +INFO - [00:30:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:30:59] Reloading browsers +INFO - [00:30:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:00] Reloading browsers +INFO - [00:31:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:01] Reloading browsers +INFO - [00:31:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:01] Reloading browsers +INFO - [00:31:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:02] Reloading browsers +INFO - [00:31:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:03] Reloading browsers +INFO - [00:31:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:04] Reloading browsers +INFO - [00:31:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:05] Reloading browsers +INFO - [00:31:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:06] Reloading browsers +INFO - [00:31:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:06] Reloading browsers +INFO - [00:31:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:07] Reloading browsers +INFO - [00:31:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:08] Reloading browsers +INFO - [00:31:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:09] Reloading browsers +INFO - [00:31:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:10] Reloading browsers +INFO - [00:31:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:11] Reloading browsers +INFO - [00:31:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:11] Reloading browsers +INFO - [00:31:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:12] Reloading browsers +INFO - [00:31:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:13] Reloading browsers +INFO - [00:31:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:14] Reloading browsers +INFO - [00:31:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:15] Reloading browsers +INFO - [00:31:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:15] Reloading browsers +INFO - [00:31:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:16] Reloading browsers +INFO - [00:31:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:17] Reloading browsers +INFO - [00:31:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:18] Reloading browsers +INFO - [00:31:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:19] Reloading browsers +INFO - [00:31:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:20] Reloading browsers +INFO - [00:31:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:20] Reloading browsers +INFO - [00:31:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:21] Reloading browsers +INFO - [00:31:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:22] Reloading browsers +INFO - [00:31:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:23] Reloading browsers +INFO - [00:31:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:24] Reloading browsers +INFO - [00:31:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:25] Reloading browsers +INFO - [00:31:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:25] Reloading browsers +INFO - [00:31:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:26] Reloading browsers +INFO - [00:31:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:27] Reloading browsers +INFO - [00:31:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:28] Reloading browsers +INFO - [00:31:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:29] Reloading browsers +INFO - [00:31:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:29] Reloading browsers +INFO - [00:31:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:30] Reloading browsers +INFO - [00:31:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:31] Reloading browsers +INFO - [00:31:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:32] Reloading browsers +INFO - [00:31:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:33] Reloading browsers +INFO - [00:31:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:34] Reloading browsers +INFO - [00:31:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:34] Reloading browsers +INFO - [00:31:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:35] Reloading browsers +INFO - [00:31:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:36] Reloading browsers +INFO - [00:31:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:37] Reloading browsers +INFO - [00:31:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:38] Reloading browsers +INFO - [00:31:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:38] Reloading browsers +INFO - [00:31:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:39] Reloading browsers +INFO - [00:31:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:40] Reloading browsers +INFO - [00:31:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:41] Reloading browsers +INFO - [00:31:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:42] Reloading browsers +INFO - [00:31:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:43] Reloading browsers +INFO - [00:31:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:43] Reloading browsers +INFO - [00:31:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:44] Reloading browsers +INFO - [00:31:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:45] Reloading browsers +INFO - [00:31:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:46] Reloading browsers +INFO - [00:31:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:47] Reloading browsers +INFO - [00:31:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:48] Reloading browsers +INFO - [00:31:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:48] Reloading browsers +INFO - [00:31:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:49] Reloading browsers +INFO - [00:31:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:50] Reloading browsers +INFO - [00:31:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:51] Reloading browsers +INFO - [00:31:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:52] Reloading browsers +INFO - [00:31:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:53] Reloading browsers +INFO - [00:31:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:53] Reloading browsers +INFO - [00:31:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:54] Reloading browsers +INFO - [00:31:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:55] Reloading browsers +INFO - [00:31:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:56] Reloading browsers +INFO - [00:31:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:57] Reloading browsers +INFO - [00:31:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:58] Reloading browsers +INFO - [00:31:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:59] Reloading browsers +INFO - [00:31:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:31:59] Reloading browsers +INFO - [00:31:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:00] Reloading browsers +INFO - [00:32:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:01] Reloading browsers +INFO - [00:32:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:02] Reloading browsers +INFO - [00:32:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:03] Reloading browsers +INFO - [00:32:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:03] Reloading browsers +INFO - [00:32:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:04] Reloading browsers +INFO - [00:32:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:05] Reloading browsers +INFO - [00:32:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:06] Reloading browsers +INFO - [00:32:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:07] Reloading browsers +INFO - [00:32:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:07] Reloading browsers +INFO - [00:32:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:08] Reloading browsers +INFO - [00:32:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:09] Reloading browsers +INFO - [00:32:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:10] Reloading browsers +INFO - [00:32:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:11] Reloading browsers +INFO - [00:32:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:11] Reloading browsers +INFO - [00:32:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:12] Reloading browsers +INFO - [00:32:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:13] Reloading browsers +INFO - [00:32:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:14] Reloading browsers +INFO - [00:32:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:15] Reloading browsers +INFO - [00:32:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:15] Reloading browsers +INFO - [00:32:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:16] Reloading browsers +INFO - [00:32:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:17] Reloading browsers +INFO - [00:32:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:18] Reloading browsers +INFO - [00:32:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:19] Reloading browsers +INFO - [00:32:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:19] Reloading browsers +INFO - [00:32:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:20] Reloading browsers +INFO - [00:32:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:21] Reloading browsers +INFO - [00:32:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:22] Reloading browsers +INFO - [00:32:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:22] Reloading browsers +INFO - [00:32:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:23] Reloading browsers +INFO - [00:32:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:24] Reloading browsers +INFO - [00:32:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:25] Reloading browsers +INFO - [00:32:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:26] Reloading browsers +INFO - [00:32:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:26] Reloading browsers +INFO - [00:32:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:27] Reloading browsers +INFO - [00:32:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:28] Reloading browsers +INFO - [00:32:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:29] Reloading browsers +INFO - [00:32:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:30] Reloading browsers +INFO - [00:32:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:30] Reloading browsers +INFO - [00:32:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:31] Reloading browsers +INFO - [00:32:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:32] Reloading browsers +INFO - [00:32:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:33] Reloading browsers +INFO - [00:32:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:34] Reloading browsers +INFO - [00:32:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:34] Reloading browsers +INFO - [00:32:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:35] Reloading browsers +INFO - [00:32:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:36] Reloading browsers +INFO - [00:32:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:37] Reloading browsers +INFO - [00:32:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:38] Reloading browsers +INFO - [00:32:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:39] Reloading browsers +INFO - [00:32:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:39] Reloading browsers +INFO - [00:32:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:40] Reloading browsers +INFO - [00:32:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:41] Reloading browsers +INFO - [00:32:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:42] Reloading browsers +INFO - [00:32:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:42] Reloading browsers +INFO - [00:32:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:43] Reloading browsers +INFO - [00:32:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:44] Reloading browsers +INFO - [00:32:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:45] Reloading browsers +INFO - [00:32:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:46] Reloading browsers +INFO - [00:32:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:46] Reloading browsers +INFO - [00:32:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:47] Reloading browsers +INFO - [00:32:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:48] Reloading browsers +INFO - [00:32:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:49] Reloading browsers +INFO - [00:32:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:50] Reloading browsers +INFO - [00:32:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:50] Reloading browsers +INFO - [00:32:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:51] Reloading browsers +INFO - [00:32:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:52] Reloading browsers +INFO - [00:32:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.61 seconds +INFO - [00:32:53] Reloading browsers +INFO - [00:32:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:53] Reloading browsers +INFO - [00:32:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:54] Reloading browsers +INFO - [00:32:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:55] Reloading browsers +INFO - [00:32:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:56] Reloading browsers +INFO - [00:32:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:57] Reloading browsers +INFO - [00:32:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:58] Reloading browsers +INFO - [00:32:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:32:59] Reloading browsers +INFO - [00:32:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:00] Reloading browsers +INFO - [00:33:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:00] Reloading browsers +INFO - [00:33:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:01] Reloading browsers +INFO - [00:33:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:02] Reloading browsers +INFO - [00:33:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:03] Reloading browsers +INFO - [00:33:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:04] Reloading browsers +INFO - [00:33:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:04] Reloading browsers +INFO - [00:33:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:05] Reloading browsers +INFO - [00:33:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:06] Reloading browsers +INFO - [00:33:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:07] Reloading browsers +INFO - [00:33:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:08] Reloading browsers +INFO - [00:33:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:08] Reloading browsers +INFO - [00:33:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:09] Reloading browsers +INFO - [00:33:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:10] Reloading browsers +INFO - [00:33:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:11] Reloading browsers +INFO - [00:33:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:11] Reloading browsers +INFO - [00:33:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:12] Reloading browsers +INFO - [00:33:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:13] Reloading browsers +INFO - [00:33:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:14] Reloading browsers +INFO - [00:33:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:15] Reloading browsers +INFO - [00:33:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:15] Reloading browsers +INFO - [00:33:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:16] Reloading browsers +INFO - [00:33:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:17] Reloading browsers +INFO - [00:33:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:18] Reloading browsers +INFO - [00:33:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:19] Reloading browsers +INFO - [00:33:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:19] Reloading browsers +INFO - [00:33:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:20] Reloading browsers +INFO - [00:33:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:21] Reloading browsers +INFO - [00:33:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:22] Reloading browsers +INFO - [00:33:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:23] Reloading browsers +INFO - [00:33:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:23] Reloading browsers +INFO - [00:33:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:24] Reloading browsers +INFO - [00:33:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:25] Reloading browsers +INFO - [00:33:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:26] Reloading browsers +INFO - [00:33:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:27] Reloading browsers +INFO - [00:33:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:28] Reloading browsers +INFO - [00:33:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:29] Reloading browsers +INFO - [00:33:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:29] Reloading browsers +INFO - [00:33:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:30] Reloading browsers +INFO - [00:33:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:31] Reloading browsers +INFO - [00:33:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:32] Reloading browsers +INFO - [00:33:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:33] Reloading browsers +INFO - [00:33:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:34] Reloading browsers +INFO - [00:33:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:34] Reloading browsers +INFO - [00:33:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:35] Reloading browsers +INFO - [00:33:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:36] Reloading browsers +INFO - [00:33:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:37] Reloading browsers +INFO - [00:33:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:37] Reloading browsers +INFO - [00:33:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:38] Reloading browsers +INFO - [00:33:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:39] Reloading browsers +INFO - [00:33:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:40] Reloading browsers +INFO - [00:33:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:41] Reloading browsers +INFO - [00:33:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:41] Reloading browsers +INFO - [00:33:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:42] Reloading browsers +INFO - [00:33:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:43] Reloading browsers +INFO - [00:33:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:44] Reloading browsers +INFO - [00:33:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:44] Reloading browsers +INFO - [00:33:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:45] Reloading browsers +INFO - [00:33:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:46] Reloading browsers +INFO - [00:33:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:47] Reloading browsers +INFO - [00:33:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:48] Reloading browsers +INFO - [00:33:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:48] Reloading browsers +INFO - [00:33:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:49] Reloading browsers +INFO - [00:33:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:50] Reloading browsers +INFO - [00:33:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:51] Reloading browsers +INFO - [00:33:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:51] Reloading browsers +INFO - [00:33:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:52] Reloading browsers +INFO - [00:33:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:53] Reloading browsers +INFO - [00:33:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:54] Reloading browsers +INFO - [00:33:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:55] Reloading browsers +INFO - [00:33:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:55] Reloading browsers +INFO - [00:33:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:56] Reloading browsers +INFO - [00:33:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:57] Reloading browsers +INFO - [00:33:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:58] Reloading browsers +INFO - [00:33:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:58] Reloading browsers +INFO - [00:33:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:33:59] Reloading browsers +INFO - [00:33:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:00] Reloading browsers +INFO - [00:34:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:01] Reloading browsers +INFO - [00:34:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:02] Reloading browsers +INFO - [00:34:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:02] Reloading browsers +INFO - [00:34:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:03] Reloading browsers +INFO - [00:34:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:04] Reloading browsers +INFO - [00:34:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:05] Reloading browsers +INFO - [00:34:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:05] Reloading browsers +INFO - [00:34:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:06] Reloading browsers +INFO - [00:34:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:07] Reloading browsers +INFO - [00:34:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:08] Reloading browsers +INFO - [00:34:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:09] Reloading browsers +INFO - [00:34:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:10] Reloading browsers +INFO - [00:34:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:10] Reloading browsers +INFO - [00:34:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:11] Reloading browsers +INFO - [00:34:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:12] Reloading browsers +INFO - [00:34:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:13] Reloading browsers +INFO - [00:34:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:14] Reloading browsers +INFO - [00:34:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:14] Reloading browsers +INFO - [00:34:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:15] Reloading browsers +INFO - [00:34:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:16] Reloading browsers +INFO - [00:34:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:17] Reloading browsers +INFO - [00:34:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:18] Reloading browsers +INFO - [00:34:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:18] Reloading browsers +INFO - [00:34:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:19] Reloading browsers +INFO - [00:34:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:20] Reloading browsers +INFO - [00:34:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:21] Reloading browsers +INFO - [00:34:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:21] Reloading browsers +INFO - [00:34:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:22] Reloading browsers +INFO - [00:34:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:23] Reloading browsers +INFO - [00:34:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:24] Reloading browsers +INFO - [00:34:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:25] Reloading browsers +INFO - [00:34:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:25] Reloading browsers +INFO - [00:34:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:26] Reloading browsers +INFO - [00:34:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:27] Reloading browsers +INFO - [00:34:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:28] Reloading browsers +INFO - [00:34:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:28] Reloading browsers +INFO - [00:34:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:29] Reloading browsers +INFO - [00:34:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:30] Reloading browsers +INFO - [00:34:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:31] Reloading browsers +INFO - [00:34:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:32] Reloading browsers +INFO - [00:34:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:32] Reloading browsers +INFO - [00:34:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:33] Reloading browsers +INFO - [00:34:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:34] Reloading browsers +INFO - [00:34:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:35] Reloading browsers +INFO - [00:34:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:35] Reloading browsers +INFO - [00:34:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:36] Reloading browsers +INFO - [00:34:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:37] Reloading browsers +INFO - [00:34:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:38] Reloading browsers +INFO - [00:34:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:38] Reloading browsers +INFO - [00:34:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:39] Reloading browsers +INFO - [00:34:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:40] Reloading browsers +INFO - [00:34:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:41] Reloading browsers +INFO - [00:34:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:41] Reloading browsers +INFO - [00:34:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:42] Reloading browsers +INFO - [00:34:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:43] Reloading browsers +INFO - [00:34:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:44] Reloading browsers +INFO - [00:34:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:45] Reloading browsers +INFO - [00:34:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:45] Reloading browsers +INFO - [00:34:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:46] Reloading browsers +INFO - [00:34:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:47] Reloading browsers +INFO - [00:34:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:48] Reloading browsers +INFO - [00:34:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:48] Reloading browsers +INFO - [00:34:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:49] Reloading browsers +INFO - [00:34:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:50] Reloading browsers +INFO - [00:34:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:51] Reloading browsers +INFO - [00:34:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:52] Reloading browsers +INFO - [00:34:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:52] Reloading browsers +INFO - [00:34:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:53] Reloading browsers +INFO - [00:34:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:54] Reloading browsers +INFO - [00:34:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:55] Reloading browsers +INFO - [00:34:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:56] Reloading browsers +INFO - [00:34:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:56] Reloading browsers +INFO - [00:34:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:57] Reloading browsers +INFO - [00:34:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:58] Reloading browsers +INFO - [00:34:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:34:59] Reloading browsers +INFO - [00:34:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:00] Reloading browsers +INFO - [00:35:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:00] Reloading browsers +INFO - [00:35:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:01] Reloading browsers +INFO - [00:35:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:02] Reloading browsers +INFO - [00:35:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:03] Reloading browsers +INFO - [00:35:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:04] Reloading browsers +INFO - [00:35:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:04] Reloading browsers +INFO - [00:35:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:05] Reloading browsers +INFO - [00:35:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:06] Reloading browsers +INFO - [00:35:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:07] Reloading browsers +INFO - [00:35:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:08] Reloading browsers +INFO - [00:35:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:08] Reloading browsers +INFO - [00:35:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:09] Reloading browsers +INFO - [00:35:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:10] Reloading browsers +INFO - [00:35:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:11] Reloading browsers +INFO - [00:35:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:11] Reloading browsers +INFO - [00:35:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:12] Reloading browsers +INFO - [00:35:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:13] Reloading browsers +INFO - [00:35:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:14] Reloading browsers +INFO - [00:35:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:15] Reloading browsers +INFO - [00:35:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:15] Reloading browsers +INFO - [00:35:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:16] Reloading browsers +INFO - [00:35:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:17] Reloading browsers +INFO - [00:35:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:18] Reloading browsers +INFO - [00:35:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:18] Reloading browsers +INFO - [00:35:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:19] Reloading browsers +INFO - [00:35:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:20] Reloading browsers +INFO - [00:35:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:21] Reloading browsers +INFO - [00:35:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:21] Reloading browsers +INFO - [00:35:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:22] Reloading browsers +INFO - [00:35:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:23] Reloading browsers +INFO - [00:35:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:24] Reloading browsers +INFO - [00:35:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:25] Reloading browsers +INFO - [00:35:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:25] Reloading browsers +INFO - [00:35:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:26] Reloading browsers +INFO - [00:35:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:27] Reloading browsers +INFO - [00:35:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:28] Reloading browsers +INFO - [00:35:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:28] Reloading browsers +INFO - [00:35:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:29] Reloading browsers +INFO - [00:35:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:30] Reloading browsers +INFO - [00:35:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:31] Reloading browsers +INFO - [00:35:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:32] Reloading browsers +INFO - [00:35:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:32] Reloading browsers +INFO - [00:35:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:33] Reloading browsers +INFO - [00:35:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:34] Reloading browsers +INFO - [00:35:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:35] Reloading browsers +INFO - [00:35:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:35] Reloading browsers +INFO - [00:35:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:36] Reloading browsers +INFO - [00:35:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:37] Reloading browsers +INFO - [00:35:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:38] Reloading browsers +INFO - [00:35:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:38] Reloading browsers +INFO - [00:35:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:39] Reloading browsers +INFO - [00:35:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:40] Reloading browsers +INFO - [00:35:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:41] Reloading browsers +INFO - [00:35:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:42] Reloading browsers +INFO - [00:35:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:42] Reloading browsers +INFO - [00:35:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:43] Reloading browsers +INFO - [00:35:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:44] Reloading browsers +INFO - [00:35:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:45] Reloading browsers +INFO - [00:35:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:45] Reloading browsers +INFO - [00:35:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:46] Reloading browsers +INFO - [00:35:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:47] Reloading browsers +INFO - [00:35:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:48] Reloading browsers +INFO - [00:35:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:49] Reloading browsers +INFO - [00:35:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:49] Reloading browsers +INFO - [00:35:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:50] Reloading browsers +INFO - [00:35:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:51] Reloading browsers +INFO - [00:35:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:52] Reloading browsers +INFO - [00:35:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:53] Reloading browsers +INFO - [00:35:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:53] Reloading browsers +INFO - [00:35:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:54] Reloading browsers +INFO - [00:35:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:55] Reloading browsers +INFO - [00:35:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:56] Reloading browsers +INFO - [00:35:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:57] Reloading browsers +INFO - [00:35:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:57] Reloading browsers +INFO - [00:35:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:58] Reloading browsers +INFO - [00:35:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:35:59] Reloading browsers +INFO - [00:35:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:00] Reloading browsers +INFO - [00:36:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:00] Reloading browsers +INFO - [00:36:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:01] Reloading browsers +INFO - [00:36:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:02] Reloading browsers +INFO - [00:36:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:03] Reloading browsers +INFO - [00:36:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:04] Reloading browsers +INFO - [00:36:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:04] Reloading browsers +INFO - [00:36:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:05] Reloading browsers +INFO - [00:36:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:06] Reloading browsers +INFO - [00:36:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:07] Reloading browsers +INFO - [00:36:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:07] Reloading browsers +INFO - [00:36:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:08] Reloading browsers +INFO - [00:36:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:09] Reloading browsers +INFO - [00:36:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:10] Reloading browsers +INFO - [00:36:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:10] Reloading browsers +INFO - [00:36:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:11] Reloading browsers +INFO - [00:36:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:12] Reloading browsers +INFO - [00:36:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:13] Reloading browsers +INFO - [00:36:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:14] Reloading browsers +INFO - [00:36:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:14] Reloading browsers +INFO - [00:36:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:15] Reloading browsers +INFO - [00:36:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:16] Reloading browsers +INFO - [00:36:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:17] Reloading browsers +INFO - [00:36:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:18] Reloading browsers +INFO - [00:36:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:18] Reloading browsers +INFO - [00:36:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:19] Reloading browsers +INFO - [00:36:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:20] Reloading browsers +INFO - [00:36:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:21] Reloading browsers +INFO - [00:36:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:22] Reloading browsers +INFO - [00:36:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:22] Reloading browsers +INFO - [00:36:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:23] Reloading browsers +INFO - [00:36:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:24] Reloading browsers +INFO - [00:36:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:25] Reloading browsers +INFO - [00:36:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:25] Reloading browsers +INFO - [00:36:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:26] Reloading browsers +INFO - [00:36:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:27] Reloading browsers +INFO - [00:36:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:28] Reloading browsers +INFO - [00:36:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:29] Reloading browsers +INFO - [00:36:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:29] Reloading browsers +INFO - [00:36:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:30] Reloading browsers +INFO - [00:36:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:31] Reloading browsers +INFO - [00:36:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:32] Reloading browsers +INFO - [00:36:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:33] Reloading browsers +INFO - [00:36:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:33] Reloading browsers +INFO - [00:36:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:34] Reloading browsers +INFO - [00:36:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:35] Reloading browsers +INFO - [00:36:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:36] Reloading browsers +INFO - [00:36:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:37] Reloading browsers +INFO - [00:36:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:38] Reloading browsers +INFO - [00:36:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:39] Reloading browsers +INFO - [00:36:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:39] Reloading browsers +INFO - [00:36:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:40] Reloading browsers +INFO - [00:36:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:41] Reloading browsers +INFO - [00:36:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:42] Reloading browsers +INFO - [00:36:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:43] Reloading browsers +INFO - [00:36:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:44] Reloading browsers +INFO - [00:36:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:44] Reloading browsers +INFO - [00:36:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:45] Reloading browsers +INFO - [00:36:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:46] Reloading browsers +INFO - [00:36:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:47] Reloading browsers +INFO - [00:36:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:48] Reloading browsers +INFO - [00:36:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:48] Reloading browsers +INFO - [00:36:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:49] Reloading browsers +INFO - [00:36:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:50] Reloading browsers +INFO - [00:36:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:51] Reloading browsers +INFO - [00:36:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:52] Reloading browsers +INFO - [00:36:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:52] Reloading browsers +INFO - [00:36:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:53] Reloading browsers +INFO - [00:36:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:54] Reloading browsers +INFO - [00:36:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:55] Reloading browsers +INFO - [00:36:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:56] Reloading browsers +INFO - [00:36:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:56] Reloading browsers +INFO - [00:36:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:57] Reloading browsers +INFO - [00:36:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:58] Reloading browsers +INFO - [00:36:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:36:59] Reloading browsers +INFO - [00:36:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:00] Reloading browsers +INFO - [00:37:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:01] Reloading browsers +INFO - [00:37:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:02] Reloading browsers +INFO - [00:37:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:02] Reloading browsers +INFO - [00:37:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:03] Reloading browsers +INFO - [00:37:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:04] Reloading browsers +INFO - [00:37:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:05] Reloading browsers +INFO - [00:37:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:05] Reloading browsers +INFO - [00:37:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:06] Reloading browsers +INFO - [00:37:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:07] Reloading browsers +INFO - [00:37:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:08] Reloading browsers +INFO - [00:37:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:09] Reloading browsers +INFO - [00:37:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:09] Reloading browsers +INFO - [00:37:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:10] Reloading browsers +INFO - [00:37:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:11] Reloading browsers +INFO - [00:37:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:12] Reloading browsers +INFO - [00:37:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:12] Reloading browsers +INFO - [00:37:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:13] Reloading browsers +INFO - [00:37:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:14] Reloading browsers +INFO - [00:37:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:15] Reloading browsers +INFO - [00:37:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:16] Reloading browsers +INFO - [00:37:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:17] Reloading browsers +INFO - [00:37:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:17] Reloading browsers +INFO - [00:37:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:18] Reloading browsers +INFO - [00:37:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:19] Reloading browsers +INFO - [00:37:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:20] Reloading browsers +INFO - [00:37:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:20] Reloading browsers +INFO - [00:37:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:21] Reloading browsers +INFO - [00:37:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:22] Reloading browsers +INFO - [00:37:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:23] Reloading browsers +INFO - [00:37:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:24] Reloading browsers +INFO - [00:37:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:25] Reloading browsers +INFO - [00:37:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:25] Reloading browsers +INFO - [00:37:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:26] Reloading browsers +INFO - [00:37:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:27] Reloading browsers +INFO - [00:37:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:28] Reloading browsers +INFO - [00:37:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:29] Reloading browsers +INFO - [00:37:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:30] Reloading browsers +INFO - [00:37:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:30] Reloading browsers +INFO - [00:37:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:31] Reloading browsers +INFO - [00:37:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:32] Reloading browsers +INFO - [00:37:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:33] Reloading browsers +INFO - [00:37:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.02 seconds +INFO - [00:37:34] Reloading browsers +INFO - [00:37:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.96 seconds +INFO - [00:37:35] Reloading browsers +INFO - [00:37:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:36] Reloading browsers +INFO - [00:37:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:37] Reloading browsers +INFO - [00:37:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:38] Reloading browsers +INFO - [00:37:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:39] Reloading browsers +INFO - [00:37:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:40] Reloading browsers +INFO - [00:37:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:41] Reloading browsers +INFO - [00:37:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:41] Reloading browsers +INFO - [00:37:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:42] Reloading browsers +INFO - [00:37:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:43] Reloading browsers +INFO - [00:37:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:44] Reloading browsers +INFO - [00:37:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:45] Reloading browsers +INFO - [00:37:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:45] Reloading browsers +INFO - [00:37:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:46] Reloading browsers +INFO - [00:37:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:47] Reloading browsers +INFO - [00:37:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:48] Reloading browsers +INFO - [00:37:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.91 seconds +INFO - [00:37:49] Reloading browsers +INFO - [00:37:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:50] Reloading browsers +INFO - [00:37:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:51] Reloading browsers +INFO - [00:37:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:52] Reloading browsers +INFO - [00:37:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:53] Reloading browsers +INFO - [00:37:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:54] Reloading browsers +INFO - [00:37:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:55] Reloading browsers +INFO - [00:37:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:56] Reloading browsers +INFO - [00:37:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:57] Reloading browsers +INFO - [00:37:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:58] Reloading browsers +INFO - [00:37:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:59] Reloading browsers +INFO - [00:37:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:37:59] Reloading browsers +INFO - [00:37:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:00] Reloading browsers +INFO - [00:38:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:01] Reloading browsers +INFO - [00:38:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:02] Reloading browsers +INFO - [00:38:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:03] Reloading browsers +INFO - [00:38:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:04] Reloading browsers +INFO - [00:38:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:05] Reloading browsers +INFO - [00:38:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:06] Reloading browsers +INFO - [00:38:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:07] Reloading browsers +INFO - [00:38:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:08] Reloading browsers +INFO - [00:38:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:08] Reloading browsers +INFO - [00:38:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:09] Reloading browsers +INFO - [00:38:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:10] Reloading browsers +INFO - [00:38:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:11] Reloading browsers +INFO - [00:38:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:12] Reloading browsers +INFO - [00:38:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:13] Reloading browsers +INFO - [00:38:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:14] Reloading browsers +INFO - [00:38:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:15] Reloading browsers +INFO - [00:38:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:15] Reloading browsers +INFO - [00:38:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:16] Reloading browsers +INFO - [00:38:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:17] Reloading browsers +INFO - [00:38:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:18] Reloading browsers +INFO - [00:38:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:19] Reloading browsers +INFO - [00:38:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:20] Reloading browsers +INFO - [00:38:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:21] Reloading browsers +INFO - [00:38:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:22] Reloading browsers +INFO - [00:38:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:22] Reloading browsers +INFO - [00:38:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:23] Reloading browsers +INFO - [00:38:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:24] Reloading browsers +INFO - [00:38:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:25] Reloading browsers +INFO - [00:38:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:26] Reloading browsers +INFO - [00:38:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:26] Reloading browsers +INFO - [00:38:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:27] Reloading browsers +INFO - [00:38:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:28] Reloading browsers +INFO - [00:38:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:29] Reloading browsers +INFO - [00:38:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:30] Reloading browsers +INFO - [00:38:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:30] Reloading browsers +INFO - [00:38:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:31] Reloading browsers +INFO - [00:38:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:32] Reloading browsers +INFO - [00:38:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:33] Reloading browsers +INFO - [00:38:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:33] Reloading browsers +INFO - [00:38:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:34] Reloading browsers +INFO - [00:38:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:35] Reloading browsers +INFO - [00:38:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:36] Reloading browsers +INFO - [00:38:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:37] Reloading browsers +INFO - [00:38:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:38] Reloading browsers +INFO - [00:38:38] Detected file changes +INFO - Building documentation... +INFO - [00:38:38] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:39] Reloading browsers +INFO - [00:38:39] Detected file changes +INFO - Building documentation... +INFO - [00:38:39] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:39] Reloading browsers +INFO - [00:38:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:40] Reloading browsers +INFO - [00:38:40] Detected file changes +INFO - [00:38:40] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:41] Reloading browsers +INFO - [00:38:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:42] Reloading browsers +INFO - [00:38:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:43] Reloading browsers +INFO - [00:38:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:43] Reloading browsers +INFO - [00:38:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:44] Reloading browsers +INFO - [00:38:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:45] Reloading browsers +INFO - [00:38:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:46] Reloading browsers +INFO - [00:38:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:47] Reloading browsers +INFO - [00:38:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:47] Reloading browsers +INFO - [00:38:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:48] Reloading browsers +INFO - [00:38:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:49] Reloading browsers +INFO - [00:38:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:50] Reloading browsers +INFO - [00:38:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:51] Reloading browsers +INFO - [00:38:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:51] Reloading browsers +INFO - [00:38:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:52] Reloading browsers +INFO - [00:38:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:53] Reloading browsers +INFO - [00:38:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:54] Reloading browsers +INFO - [00:38:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:55] Reloading browsers +INFO - [00:38:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:55] Reloading browsers +INFO - [00:38:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:56] Reloading browsers +INFO - [00:38:56] Detected file changes +INFO - Building documentation... +INFO - [00:38:56] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:57] Reloading browsers +INFO - [00:38:57] Detected file changes +INFO - Building documentation... +INFO - [00:38:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:58] Reloading browsers +INFO - [00:38:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:38:58] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:59] Reloading browsers +INFO - [00:38:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:38:59] Reloading browsers +INFO - [00:38:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:00] Reloading browsers +INFO - [00:39:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:01] Reloading browsers +INFO - [00:39:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:02] Reloading browsers +INFO - [00:39:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:03] Reloading browsers +INFO - [00:39:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:03] Reloading browsers +INFO - [00:39:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:04] Reloading browsers +INFO - [00:39:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:05] Reloading browsers +INFO - [00:39:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:06] Reloading browsers +INFO - [00:39:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:06] Reloading browsers +INFO - [00:39:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:07] Reloading browsers +INFO - [00:39:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:08] Reloading browsers +INFO - [00:39:08] Detected file changes +INFO - [00:39:08] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:09] Reloading browsers +INFO - [00:39:09] Detected file changes +INFO - [00:39:09] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:10] Reloading browsers +INFO - [00:39:10] Detected file changes +INFO - [00:39:10] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:10] Reloading browsers +INFO - [00:39:10] Detected file changes +INFO - Building documentation... +INFO - [00:39:11] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:11] Reloading browsers +INFO - [00:39:11] Detected file changes +INFO - [00:39:11] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:12] Reloading browsers +INFO - [00:39:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:12] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:13] Reloading browsers +INFO - [00:39:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:14] Reloading browsers +INFO - [00:39:14] Detected file changes +INFO - [00:39:14] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:15] Reloading browsers +INFO - [00:39:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:15] Reloading browsers +INFO - [00:39:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:16] Reloading browsers +INFO - [00:39:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:17] Reloading browsers +INFO - [00:39:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:18] Reloading browsers +INFO - [00:39:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:19] Reloading browsers +INFO - [00:39:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:19] Reloading browsers +INFO - [00:39:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.08 seconds +INFO - [00:39:21] Reloading browsers +INFO - [00:39:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.98 seconds +INFO - [00:39:22] Reloading browsers +INFO - [00:39:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:23] Reloading browsers +INFO - [00:39:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:24] Reloading browsers +INFO - [00:39:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:25] Reloading browsers +INFO - [00:39:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:25] Reloading browsers +INFO - [00:39:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:26] Reloading browsers +INFO - [00:39:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:27] Reloading browsers +INFO - [00:39:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:28] Reloading browsers +INFO - [00:39:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:29] Reloading browsers +INFO - [00:39:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:30] Reloading browsers +INFO - [00:39:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:31] Reloading browsers +INFO - [00:39:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:31] Reloading browsers +INFO - [00:39:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:32] Reloading browsers +INFO - [00:39:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:33] Reloading browsers +INFO - [00:39:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:34] Reloading browsers +INFO - [00:39:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:35] Reloading browsers +INFO - [00:39:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:35] Reloading browsers +INFO - [00:39:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:36] Reloading browsers +INFO - [00:39:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:37] Reloading browsers +INFO - [00:39:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:38] Reloading browsers +INFO - [00:39:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:39] Reloading browsers +INFO - [00:39:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:39] Reloading browsers +INFO - [00:39:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:40] Reloading browsers +INFO - [00:39:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:41] Reloading browsers +INFO - [00:39:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:42] Reloading browsers +INFO - [00:39:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:43] Reloading browsers +INFO - [00:39:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:43] Reloading browsers +INFO - [00:39:43] Detected file changes +INFO - Building documentation... +INFO - [00:39:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:44] Reloading browsers +INFO - [00:39:44] Detected file changes +INFO - Building documentation... +INFO - [00:39:44] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:45] Reloading browsers +INFO - [00:39:45] Detected file changes +INFO - [00:39:45] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:46] Reloading browsers +INFO - [00:39:46] Detected file changes +INFO - Building documentation... +INFO - [00:39:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:47] Reloading browsers +INFO - [00:39:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:47] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:48] Reloading browsers +INFO - [00:39:48] Detected file changes +INFO - [00:39:48] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:48] Reloading browsers +INFO - [00:39:48] Detected file changes +INFO - Building documentation... +INFO - [00:39:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:49] Reloading browsers +INFO - [00:39:49] Detected file changes +INFO - [00:39:49] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:50] Reloading browsers +INFO - [00:39:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:51] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:51] Reloading browsers +INFO - [00:39:51] Detected file changes +INFO - [00:39:51] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:52] Reloading browsers +INFO - [00:39:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:52] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:53] Reloading browsers +INFO - [00:39:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:53] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:54] Reloading browsers +INFO - [00:39:54] Detected file changes +INFO - [00:39:54] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:54] Reloading browsers +INFO - [00:39:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:55] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:55] Reloading browsers +INFO - [00:39:55] Detected file changes +INFO - Building documentation... +INFO - [00:39:55] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:56] Reloading browsers +INFO - [00:39:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:57] Reloading browsers +INFO - [00:39:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:57] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:58] Reloading browsers +INFO - [00:39:58] Detected file changes +INFO - Building documentation... +INFO - [00:39:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:39:59] Reloading browsers +INFO - [00:39:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:39:59] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:00] Reloading browsers +INFO - [00:40:00] Detected file changes +INFO - [00:40:00] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:01] Reloading browsers +INFO - [00:40:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:01] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:01] Reloading browsers +INFO - [00:40:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:02] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:02] Reloading browsers +INFO - [00:40:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:03] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:03] Reloading browsers +INFO - [00:40:03] Detected file changes +INFO - [00:40:03] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:04] Reloading browsers +INFO - [00:40:04] Detected file changes +INFO - Building documentation... +INFO - [00:40:04] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:05] Reloading browsers +INFO - [00:40:05] Detected file changes +INFO - [00:40:05] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:06] Reloading browsers +INFO - [00:40:06] Detected file changes +INFO - Building documentation... +INFO - [00:40:06] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:07] Reloading browsers +INFO - [00:40:07] Detected file changes +INFO - [00:40:07] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:08] Reloading browsers +INFO - [00:40:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:08] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:08] Reloading browsers +INFO - [00:40:08] Detected file changes +INFO - Building documentation... +INFO - [00:40:09] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:09] Reloading browsers +INFO - [00:40:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:10] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:10] Reloading browsers +INFO - [00:40:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:11] Reloading browsers +INFO - [00:40:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:12] Reloading browsers +INFO - [00:40:12] Detected file changes +INFO - Building documentation... +INFO - [00:40:12] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:13] Reloading browsers +INFO - [00:40:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:14] Reloading browsers +INFO - [00:40:14] Detected file changes +INFO - Building documentation... +INFO - [00:40:14] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:15] Reloading browsers +INFO - [00:40:15] Detected file changes +INFO - Building documentation... +INFO - [00:40:15] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:16] Reloading browsers +INFO - [00:40:16] Detected file changes +INFO - Building documentation... +INFO - [00:40:16] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:16] Reloading browsers +INFO - [00:40:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:17] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:17] Reloading browsers +INFO - [00:40:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:18] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:18] Reloading browsers +INFO - [00:40:18] Detected file changes +INFO - [00:40:18] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:19] Reloading browsers +INFO - [00:40:19] Detected file changes +INFO - Building documentation... +INFO - [00:40:19] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:20] Reloading browsers +INFO - [00:40:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:20] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:21] Reloading browsers +INFO - [00:40:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:22] Reloading browsers +INFO - [00:40:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:23] Reloading browsers +INFO - [00:40:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:23] Reloading browsers +INFO - [00:40:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:24] Reloading browsers +INFO - [00:40:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:25] Reloading browsers +INFO - [00:40:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:26] Reloading browsers +INFO - [00:40:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:27] Reloading browsers +INFO - [00:40:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:27] Reloading browsers +INFO - [00:40:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:28] Reloading browsers +INFO - [00:40:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:29] Reloading browsers +INFO - [00:40:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:30] Reloading browsers +INFO - [00:40:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:31] Reloading browsers +INFO - [00:40:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:32] Reloading browsers +INFO - [00:40:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:32] Reloading browsers +INFO - [00:40:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:33] Reloading browsers +INFO - [00:40:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:34] Reloading browsers +INFO - [00:40:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:35] Reloading browsers +INFO - [00:40:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:36] Reloading browsers +INFO - [00:40:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:37] Reloading browsers +INFO - [00:40:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:37] Reloading browsers +INFO - [00:40:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:38] Reloading browsers +INFO - [00:40:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:39] Reloading browsers +INFO - [00:40:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:40] Reloading browsers +INFO - [00:40:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:41] Reloading browsers +INFO - [00:40:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:42] Reloading browsers +INFO - [00:40:42] Detected file changes +INFO - [00:40:42] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:42] Reloading browsers +INFO - [00:40:42] Detected file changes +INFO - Building documentation... +INFO - [00:40:43] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:43] Reloading browsers +INFO - [00:40:43] Detected file changes +INFO - [00:40:43] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:44] Reloading browsers +INFO - [00:40:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:40:44] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:45] Reloading browsers +INFO - [00:40:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:45] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:46] Reloading browsers +INFO - [00:40:46] Detected file changes +INFO - Building documentation... +INFO - [00:40:46] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:47] Reloading browsers +INFO - [00:40:47] Detected file changes +INFO - Building documentation... +INFO - [00:40:47] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:48] Reloading browsers +INFO - [00:40:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:48] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:48] Reloading browsers +INFO - [00:40:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:49] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:49] Reloading browsers +INFO - [00:40:49] Detected file changes +INFO - Building documentation... +INFO - [00:40:49] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.95 seconds +INFO - [00:40:50] Reloading browsers +INFO - [00:40:50] Detected file changes +INFO - Building documentation... +INFO - [00:40:51] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.03 seconds +INFO - [00:40:52] Reloading browsers +INFO - [00:40:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:52] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:53] Reloading browsers +INFO - [00:40:53] Detected file changes +INFO - Building documentation... +INFO - [00:40:53] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:54] Reloading browsers +INFO - [00:40:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:54] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:55] Reloading browsers +INFO - [00:40:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - [00:40:55] Browser connected: http://localhost:54933/docs/ +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:56] Reloading browsers +INFO - [00:40:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:56] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:57] Reloading browsers +INFO - [00:40:57] Detected file changes +INFO - Building documentation... +INFO - [00:40:57] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:58] Reloading browsers +INFO - [00:40:58] Detected file changes +INFO - Building documentation... +INFO - [00:40:58] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:58] Reloading browsers +INFO - [00:40:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:40:59] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:40:59] Reloading browsers +INFO - [00:40:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:00] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:00] Reloading browsers +INFO - [00:41:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +INFO - [00:41:01] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:01] Reloading browsers +INFO - [00:41:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:02] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:02] Reloading browsers +INFO - [00:41:02] Detected file changes +INFO - Building documentation... +INFO - [00:41:02] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:03] Reloading browsers +INFO - [00:41:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:03] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:04] Reloading browsers +INFO - [00:41:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:04] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:05] Reloading browsers +INFO - [00:41:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:05] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:06] Reloading browsers +INFO - [00:41:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:06] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.86 seconds +INFO - [00:41:07] Reloading browsers +INFO - [00:41:07] Detected file changes +INFO - Building documentation... +INFO - [00:41:07] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:08] Reloading browsers +INFO - [00:41:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +INFO - [00:41:08] Browser connected: http://localhost:54933/docs/ +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:09] Reloading browsers +INFO - [00:41:09] Detected file changes +INFO - Building documentation... +INFO - [00:41:09] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:09] Reloading browsers +INFO - [00:41:09] Detected file changes +INFO - Building documentation... +INFO - [00:41:10] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:10] Reloading browsers +INFO - [00:41:10] Detected file changes +INFO - Building documentation... +INFO - [00:41:10] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:11] Reloading browsers +INFO - [00:41:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:11] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:12] Reloading browsers +INFO - [00:41:12] Detected file changes +INFO - Building documentation... +INFO - [00:41:12] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:13] Reloading browsers +INFO - [00:41:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:13] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:14] Reloading browsers +INFO - [00:41:14] Detected file changes +INFO - [00:41:14] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:15] Reloading browsers +INFO - [00:41:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:15] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:15] Reloading browsers +INFO - [00:41:15] Detected file changes +INFO - Building documentation... +INFO - [00:41:16] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 2.46 seconds +INFO - [00:41:18] Reloading browsers +INFO - [00:41:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:18] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:19] Reloading browsers +INFO - [00:41:19] Detected file changes +INFO - Building documentation... +INFO - [00:41:19] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:20] Reloading browsers +INFO - [00:41:20] Detected file changes +INFO - [00:41:20] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:21] Reloading browsers +INFO - [00:41:21] Detected file changes +INFO - Building documentation... +INFO - [00:41:21] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:22] Reloading browsers +INFO - [00:41:22] Detected file changes +INFO - Building documentation... +INFO - [00:41:22] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:23] Reloading browsers +INFO - [00:41:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:23] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:24] Reloading browsers +INFO - [00:41:24] Detected file changes +INFO - [00:41:24] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:24] Reloading browsers +INFO - [00:41:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:25] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:25] Reloading browsers +INFO - [00:41:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:26] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:26] Reloading browsers +INFO - [00:41:26] Detected file changes +INFO - [00:41:26] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:27] Reloading browsers +INFO - [00:41:27] Detected file changes +INFO - Building documentation... +INFO - [00:41:27] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:28] Reloading browsers +INFO - [00:41:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:28] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:29] Reloading browsers +INFO - [00:41:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:29] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:30] Reloading browsers +INFO - [00:41:30] Detected file changes +INFO - [00:41:30] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:30] Reloading browsers +INFO - [00:41:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:31] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:31] Reloading browsers +INFO - [00:41:31] Detected file changes +INFO - Building documentation... +INFO - [00:41:31] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:32] Reloading browsers +INFO - [00:41:32] Detected file changes +INFO - [00:41:32] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:33] Reloading browsers +INFO - [00:41:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:33] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:34] Reloading browsers +INFO - [00:41:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +INFO - [00:41:34] Browser connected: http://localhost:54933/docs/ +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:35] Reloading browsers +INFO - [00:41:35] Detected file changes +INFO - [00:41:35] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:36] Reloading browsers +INFO - [00:41:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:37] Reloading browsers +INFO - [00:41:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:37] Reloading browsers +INFO - [00:41:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:38] Reloading browsers +INFO - [00:41:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:39] Reloading browsers +INFO - [00:41:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:40] Reloading browsers +INFO - [00:41:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:40] Reloading browsers +INFO - [00:41:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:41] Reloading browsers +INFO - [00:41:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:42] Reloading browsers +INFO - [00:41:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:43] Reloading browsers +INFO - [00:41:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:44] Reloading browsers +INFO - [00:41:44] Detected file changes +INFO - [00:41:44] Browser connected: http://localhost:54933/docs/ +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:45] Reloading browsers +INFO - [00:41:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:45] Reloading browsers +INFO - [00:41:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:46] Reloading browsers +INFO - [00:41:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:47] Reloading browsers +INFO - [00:41:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:48] Reloading browsers +INFO - [00:41:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:49] Reloading browsers +INFO - [00:41:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:50] Reloading browsers +INFO - [00:41:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:50] Reloading browsers +INFO - [00:41:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:51] Reloading browsers +INFO - [00:41:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:52] Reloading browsers +INFO - [00:41:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:53] Reloading browsers +INFO - [00:41:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:54] Reloading browsers +INFO - [00:41:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:54] Reloading browsers +INFO - [00:41:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:55] Reloading browsers +INFO - [00:41:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:56] Reloading browsers +INFO - [00:41:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:57] Reloading browsers +INFO - [00:41:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:58] Reloading browsers +INFO - [00:41:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:58] Reloading browsers +INFO - [00:41:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:41:59] Reloading browsers +INFO - [00:41:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:00] Reloading browsers +INFO - [00:42:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:01] Reloading browsers +INFO - [00:42:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:02] Reloading browsers +INFO - [00:42:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:03] Reloading browsers +INFO - [00:42:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:03] Reloading browsers +INFO - [00:42:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:04] Reloading browsers +INFO - [00:42:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:05] Reloading browsers +INFO - [00:42:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:06] Reloading browsers +INFO - [00:42:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:06] Reloading browsers +INFO - [00:42:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:07] Reloading browsers +INFO - [00:42:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:08] Reloading browsers +INFO - [00:42:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:09] Reloading browsers +INFO - [00:42:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:10] Reloading browsers +INFO - [00:42:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:11] Reloading browsers +INFO - [00:42:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:11] Reloading browsers +INFO - [00:42:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:12] Reloading browsers +INFO - [00:42:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:13] Reloading browsers +INFO - [00:42:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:14] Reloading browsers +INFO - [00:42:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:15] Reloading browsers +INFO - [00:42:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:15] Reloading browsers +INFO - [00:42:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:16] Reloading browsers +INFO - [00:42:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:17] Reloading browsers +INFO - [00:42:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:18] Reloading browsers +INFO - [00:42:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:19] Reloading browsers +INFO - [00:42:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:20] Reloading browsers +INFO - [00:42:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:20] Reloading browsers +INFO - [00:42:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:21] Reloading browsers +INFO - [00:42:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:22] Reloading browsers +INFO - [00:42:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:23] Reloading browsers +INFO - [00:42:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:24] Reloading browsers +INFO - [00:42:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:25] Reloading browsers +INFO - [00:42:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:25] Reloading browsers +INFO - [00:42:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:26] Reloading browsers +INFO - [00:42:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:27] Reloading browsers +INFO - [00:42:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:28] Reloading browsers +INFO - [00:42:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:29] Reloading browsers +INFO - [00:42:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:29] Reloading browsers +INFO - [00:42:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:30] Reloading browsers +INFO - [00:42:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:31] Reloading browsers +INFO - [00:42:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:32] Reloading browsers +INFO - [00:42:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:33] Reloading browsers +INFO - [00:42:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:33] Reloading browsers +INFO - [00:42:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:34] Reloading browsers +INFO - [00:42:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:35] Reloading browsers +INFO - [00:42:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:36] Reloading browsers +INFO - [00:42:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:37] Reloading browsers +INFO - [00:42:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:38] Reloading browsers +INFO - [00:42:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:38] Reloading browsers +INFO - [00:42:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:39] Reloading browsers +INFO - [00:42:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:40] Reloading browsers +INFO - [00:42:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:41] Reloading browsers +INFO - [00:42:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:42] Reloading browsers +INFO - [00:42:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:43] Reloading browsers +INFO - [00:42:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:43] Reloading browsers +INFO - [00:42:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:44] Reloading browsers +INFO - [00:42:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:45] Reloading browsers +INFO - [00:42:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:46] Reloading browsers +INFO - [00:42:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:47] Reloading browsers +INFO - [00:42:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:48] Reloading browsers +INFO - [00:42:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:48] Reloading browsers +INFO - [00:42:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:49] Reloading browsers +INFO - [00:42:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:50] Reloading browsers +INFO - [00:42:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:51] Reloading browsers +INFO - [00:42:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:52] Reloading browsers +INFO - [00:42:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:53] Reloading browsers +INFO - [00:42:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:54] Reloading browsers +INFO - [00:42:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:54] Reloading browsers +INFO - [00:42:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:55] Reloading browsers +INFO - [00:42:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:56] Reloading browsers +INFO - [00:42:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:57] Reloading browsers +INFO - [00:42:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:58] Reloading browsers +INFO - [00:42:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:59] Reloading browsers +INFO - [00:42:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:42:59] Reloading browsers +INFO - [00:42:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:00] Reloading browsers +INFO - [00:43:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:01] Reloading browsers +INFO - [00:43:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:02] Reloading browsers +INFO - [00:43:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:03] Reloading browsers +INFO - [00:43:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:04] Reloading browsers +INFO - [00:43:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:04] Reloading browsers +INFO - [00:43:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:05] Reloading browsers +INFO - [00:43:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:06] Reloading browsers +INFO - [00:43:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:07] Reloading browsers +INFO - [00:43:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:08] Reloading browsers +INFO - [00:43:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:09] Reloading browsers +INFO - [00:43:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:10] Reloading browsers +INFO - [00:43:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:10] Reloading browsers +INFO - [00:43:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:11] Reloading browsers +INFO - [00:43:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:12] Reloading browsers +INFO - [00:43:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:13] Reloading browsers +INFO - [00:43:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:14] Reloading browsers +INFO - [00:43:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:15] Reloading browsers +INFO - [00:43:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:15] Reloading browsers +INFO - [00:43:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:16] Reloading browsers +INFO - [00:43:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:17] Reloading browsers +INFO - [00:43:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:18] Reloading browsers +INFO - [00:43:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:19] Reloading browsers +INFO - [00:43:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:20] Reloading browsers +INFO - [00:43:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:21] Reloading browsers +INFO - [00:43:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:22] Reloading browsers +INFO - [00:43:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:23] Reloading browsers +INFO - [00:43:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:23] Reloading browsers +INFO - [00:43:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:24] Reloading browsers +INFO - [00:43:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:25] Reloading browsers +INFO - [00:43:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:26] Reloading browsers +INFO - [00:43:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:27] Reloading browsers +INFO - [00:43:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:28] Reloading browsers +INFO - [00:43:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:28] Reloading browsers +INFO - [00:43:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:29] Reloading browsers +INFO - [00:43:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:30] Reloading browsers +INFO - [00:43:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:31] Reloading browsers +INFO - [00:43:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:32] Reloading browsers +INFO - [00:43:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:33] Reloading browsers +INFO - [00:43:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:33] Reloading browsers +INFO - [00:43:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:34] Reloading browsers +INFO - [00:43:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:35] Reloading browsers +INFO - [00:43:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:36] Reloading browsers +INFO - [00:43:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:37] Reloading browsers +INFO - [00:43:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:38] Reloading browsers +INFO - [00:43:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:38] Reloading browsers +INFO - [00:43:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.87 seconds +INFO - [00:43:39] Reloading browsers +INFO - [00:43:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:40] Reloading browsers +INFO - [00:43:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:41] Reloading browsers +INFO - [00:43:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:42] Reloading browsers +INFO - [00:43:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:43] Reloading browsers +INFO - [00:43:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:44] Reloading browsers +INFO - [00:43:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:45] Reloading browsers +INFO - [00:43:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:46] Reloading browsers +INFO - [00:43:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:46] Reloading browsers +INFO - [00:43:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:47] Reloading browsers +INFO - [00:43:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:48] Reloading browsers +INFO - [00:43:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:49] Reloading browsers +INFO - [00:43:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:50] Reloading browsers +INFO - [00:43:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:50] Reloading browsers +INFO - [00:43:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:51] Reloading browsers +INFO - [00:43:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:52] Reloading browsers +INFO - [00:43:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:53] Reloading browsers +INFO - [00:43:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:54] Reloading browsers +INFO - [00:43:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:54] Reloading browsers +INFO - [00:43:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:55] Reloading browsers +INFO - [00:43:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:56] Reloading browsers +INFO - [00:43:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:57] Reloading browsers +INFO - [00:43:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:58] Reloading browsers +INFO - [00:43:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:58] Reloading browsers +INFO - [00:43:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:43:59] Reloading browsers +INFO - [00:43:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:00] Reloading browsers +INFO - [00:44:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:01] Reloading browsers +INFO - [00:44:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:02] Reloading browsers +INFO - [00:44:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:02] Reloading browsers +INFO - [00:44:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:03] Reloading browsers +INFO - [00:44:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:04] Reloading browsers +INFO - [00:44:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:05] Reloading browsers +INFO - [00:44:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:06] Reloading browsers +INFO - [00:44:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:07] Reloading browsers +INFO - [00:44:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:08] Reloading browsers +INFO - [00:44:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:08] Reloading browsers +INFO - [00:44:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:09] Reloading browsers +INFO - [00:44:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:10] Reloading browsers +INFO - [00:44:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:11] Reloading browsers +INFO - [00:44:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:12] Reloading browsers +INFO - [00:44:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:12] Reloading browsers +INFO - [00:44:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:13] Reloading browsers +INFO - [00:44:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:14] Reloading browsers +INFO - [00:44:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:15] Reloading browsers +INFO - [00:44:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:16] Reloading browsers +INFO - [00:44:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:17] Reloading browsers +INFO - [00:44:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:17] Reloading browsers +INFO - [00:44:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:18] Reloading browsers +INFO - [00:44:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:19] Reloading browsers +INFO - [00:44:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:20] Reloading browsers +INFO - [00:44:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:21] Reloading browsers +INFO - [00:44:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:22] Reloading browsers +INFO - [00:44:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:23] Reloading browsers +INFO - [00:44:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:23] Reloading browsers +INFO - [00:44:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:24] Reloading browsers +INFO - [00:44:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:25] Reloading browsers +INFO - [00:44:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:26] Reloading browsers +INFO - [00:44:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:27] Reloading browsers +INFO - [00:44:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:27] Reloading browsers +INFO - [00:44:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:28] Reloading browsers +INFO - [00:44:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:29] Reloading browsers +INFO - [00:44:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:30] Reloading browsers +INFO - [00:44:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:31] Reloading browsers +INFO - [00:44:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:32] Reloading browsers +INFO - [00:44:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:33] Reloading browsers +INFO - [00:44:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:33] Reloading browsers +INFO - [00:44:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:34] Reloading browsers +INFO - [00:44:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:35] Reloading browsers +INFO - [00:44:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:36] Reloading browsers +INFO - [00:44:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.93 seconds +INFO - [00:44:37] Reloading browsers +INFO - [00:44:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:38] Reloading browsers +INFO - [00:44:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:38] Reloading browsers +INFO - [00:44:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:39] Reloading browsers +INFO - [00:44:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:40] Reloading browsers +INFO - [00:44:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:41] Reloading browsers +INFO - [00:44:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:42] Reloading browsers +INFO - [00:44:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:43] Reloading browsers +INFO - [00:44:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:44] Reloading browsers +INFO - [00:44:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:44] Reloading browsers +INFO - [00:44:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:45] Reloading browsers +INFO - [00:44:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:46] Reloading browsers +INFO - [00:44:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:47] Reloading browsers +INFO - [00:44:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:48] Reloading browsers +INFO - [00:44:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:49] Reloading browsers +INFO - [00:44:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:50] Reloading browsers +INFO - [00:44:50] Detected file changes +INFO - Building documentation... +INFO - [00:44:50] Browser connected: http://localhost:54933/docs/ +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:51] Reloading browsers +INFO - [00:44:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:52] Reloading browsers +INFO - [00:44:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:52] Reloading browsers +INFO - [00:44:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:53] Reloading browsers +INFO - [00:44:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:54] Reloading browsers +INFO - [00:44:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:55] Reloading browsers +INFO - [00:44:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:56] Reloading browsers +INFO - [00:44:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:57] Reloading browsers +INFO - [00:44:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:58] Reloading browsers +INFO - [00:44:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:58] Reloading browsers +INFO - [00:44:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:44:59] Reloading browsers +INFO - [00:44:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:00] Reloading browsers +INFO - [00:45:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:01] Reloading browsers +INFO - [00:45:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:02] Reloading browsers +INFO - [00:45:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:03] Reloading browsers +INFO - [00:45:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:03] Reloading browsers +INFO - [00:45:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:04] Reloading browsers +INFO - [00:45:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:05] Reloading browsers +INFO - [00:45:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:06] Reloading browsers +INFO - [00:45:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:07] Reloading browsers +INFO - [00:45:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:07] Reloading browsers +INFO - [00:45:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:08] Reloading browsers +INFO - [00:45:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:09] Reloading browsers +INFO - [00:45:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:10] Reloading browsers +INFO - [00:45:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:11] Reloading browsers +INFO - [00:45:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:12] Reloading browsers +INFO - [00:45:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:13] Reloading browsers +INFO - [00:45:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:14] Reloading browsers +INFO - [00:45:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:15] Reloading browsers +INFO - [00:45:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.94 seconds +INFO - [00:45:16] Reloading browsers +INFO - [00:45:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:16] Reloading browsers +INFO - [00:45:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:17] Reloading browsers +INFO - [00:45:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:18] Reloading browsers +INFO - [00:45:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:19] Reloading browsers +INFO - [00:45:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:20] Reloading browsers +INFO - [00:45:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:21] Reloading browsers +INFO - [00:45:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:22] Reloading browsers +INFO - [00:45:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:23] Reloading browsers +INFO - [00:45:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:24] Reloading browsers +INFO - [00:45:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:24] Reloading browsers +INFO - [00:45:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:25] Reloading browsers +INFO - [00:45:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:26] Reloading browsers +INFO - [00:45:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:27] Reloading browsers +INFO - [00:45:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:28] Reloading browsers +INFO - [00:45:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:29] Reloading browsers +INFO - [00:45:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:30] Reloading browsers +INFO - [00:45:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:30] Reloading browsers +INFO - [00:45:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:31] Reloading browsers +INFO - [00:45:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:32] Reloading browsers +INFO - [00:45:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 1.07 seconds +INFO - [00:45:33] Reloading browsers +INFO - [00:45:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:34] Reloading browsers +INFO - [00:45:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:35] Reloading browsers +INFO - [00:45:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:36] Reloading browsers +INFO - [00:45:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:37] Reloading browsers +INFO - [00:45:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:38] Reloading browsers +INFO - [00:45:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:39] Reloading browsers +INFO - [00:45:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:40] Reloading browsers +INFO - [00:45:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:41] Reloading browsers +INFO - [00:45:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:41] Reloading browsers +INFO - [00:45:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:42] Reloading browsers +INFO - [00:45:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:43] Reloading browsers +INFO - [00:45:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:44] Reloading browsers +INFO - [00:45:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.92 seconds +INFO - [00:45:45] Reloading browsers +INFO - [00:45:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:46] Reloading browsers +INFO - [00:45:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:47] Reloading browsers +INFO - [00:45:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:48] Reloading browsers +INFO - [00:45:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:49] Reloading browsers +INFO - [00:45:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:49] Reloading browsers +INFO - [00:45:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:50] Reloading browsers +INFO - [00:45:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:51] Reloading browsers +INFO - [00:45:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:52] Reloading browsers +INFO - [00:45:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:53] Reloading browsers +INFO - [00:45:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:54] Reloading browsers +INFO - [00:45:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:55] Reloading browsers +INFO - [00:45:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:55] Reloading browsers +INFO - [00:45:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:56] Reloading browsers +INFO - [00:45:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:57] Reloading browsers +INFO - [00:45:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:58] Reloading browsers +INFO - [00:45:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:59] Reloading browsers +INFO - [00:45:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:45:59] Reloading browsers +INFO - [00:45:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:00] Reloading browsers +INFO - [00:46:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:01] Reloading browsers +INFO - [00:46:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:02] Reloading browsers +INFO - [00:46:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:03] Reloading browsers +INFO - [00:46:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:03] Reloading browsers +INFO - [00:46:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:04] Reloading browsers +INFO - [00:46:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:05] Reloading browsers +INFO - [00:46:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:06] Reloading browsers +INFO - [00:46:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:07] Reloading browsers +INFO - [00:46:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:07] Reloading browsers +INFO - [00:46:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:08] Reloading browsers +INFO - [00:46:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:09] Reloading browsers +INFO - [00:46:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:10] Reloading browsers +INFO - [00:46:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:11] Reloading browsers +INFO - [00:46:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:12] Reloading browsers +INFO - [00:46:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:12] Reloading browsers +INFO - [00:46:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:13] Reloading browsers +INFO - [00:46:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:14] Reloading browsers +INFO - [00:46:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:15] Reloading browsers +INFO - [00:46:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:16] Reloading browsers +INFO - [00:46:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:17] Reloading browsers +INFO - [00:46:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:18] Reloading browsers +INFO - [00:46:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:18] Reloading browsers +INFO - [00:46:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:19] Reloading browsers +INFO - [00:46:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:20] Reloading browsers +INFO - [00:46:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:21] Reloading browsers +INFO - [00:46:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:22] Reloading browsers +INFO - [00:46:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:23] Reloading browsers +INFO - [00:46:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:23] Reloading browsers +INFO - [00:46:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:24] Reloading browsers +INFO - [00:46:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:25] Reloading browsers +INFO - [00:46:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:26] Reloading browsers +INFO - [00:46:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:27] Reloading browsers +INFO - [00:46:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:28] Reloading browsers +INFO - [00:46:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:28] Reloading browsers +INFO - [00:46:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:29] Reloading browsers +INFO - [00:46:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:30] Reloading browsers +INFO - [00:46:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:31] Reloading browsers +INFO - [00:46:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:32] Reloading browsers +INFO - [00:46:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:33] Reloading browsers +INFO - [00:46:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:33] Reloading browsers +INFO - [00:46:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:34] Reloading browsers +INFO - [00:46:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:35] Reloading browsers +INFO - [00:46:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:36] Reloading browsers +INFO - [00:46:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:37] Reloading browsers +INFO - [00:46:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:37] Reloading browsers +INFO - [00:46:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:38] Reloading browsers +INFO - [00:46:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:39] Reloading browsers +INFO - [00:46:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:40] Reloading browsers +INFO - [00:46:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:40] Reloading browsers +INFO - [00:46:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:41] Reloading browsers +INFO - [00:46:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:42] Reloading browsers +INFO - [00:46:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:43] Reloading browsers +INFO - [00:46:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:44] Reloading browsers +INFO - [00:46:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:44] Reloading browsers +INFO - [00:46:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:45] Reloading browsers +INFO - [00:46:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:46] Reloading browsers +INFO - [00:46:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:47] Reloading browsers +INFO - [00:46:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:48] Reloading browsers +INFO - [00:46:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:48] Reloading browsers +INFO - [00:46:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:49] Reloading browsers +INFO - [00:46:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:50] Reloading browsers +INFO - [00:46:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:51] Reloading browsers +INFO - [00:46:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:52] Reloading browsers +INFO - [00:46:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:52] Reloading browsers +INFO - [00:46:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:53] Reloading browsers +INFO - [00:46:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:54] Reloading browsers +INFO - [00:46:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:55] Reloading browsers +INFO - [00:46:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:56] Reloading browsers +INFO - [00:46:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:56] Reloading browsers +INFO - [00:46:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:57] Reloading browsers +INFO - [00:46:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:58] Reloading browsers +INFO - [00:46:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:46:59] Reloading browsers +INFO - [00:46:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:00] Reloading browsers +INFO - [00:47:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:00] Reloading browsers +INFO - [00:47:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:01] Reloading browsers +INFO - [00:47:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:02] Reloading browsers +INFO - [00:47:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:03] Reloading browsers +INFO - [00:47:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:04] Reloading browsers +INFO - [00:47:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:04] Reloading browsers +INFO - [00:47:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:05] Reloading browsers +INFO - [00:47:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:06] Reloading browsers +INFO - [00:47:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:07] Reloading browsers +INFO - [00:47:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:07] Reloading browsers +INFO - [00:47:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:08] Reloading browsers +INFO - [00:47:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:09] Reloading browsers +INFO - [00:47:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:10] Reloading browsers +INFO - [00:47:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:11] Reloading browsers +INFO - [00:47:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:12] Reloading browsers +INFO - [00:47:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:12] Reloading browsers +INFO - [00:47:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:13] Reloading browsers +INFO - [00:47:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:14] Reloading browsers +INFO - [00:47:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:15] Reloading browsers +INFO - [00:47:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:16] Reloading browsers +INFO - [00:47:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:17] Reloading browsers +INFO - [00:47:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:17] Reloading browsers +INFO - [00:47:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:18] Reloading browsers +INFO - [00:47:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:19] Reloading browsers +INFO - [00:47:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:20] Reloading browsers +INFO - [00:47:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:21] Reloading browsers +INFO - [00:47:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:21] Reloading browsers +INFO - [00:47:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:22] Reloading browsers +INFO - [00:47:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:23] Reloading browsers +INFO - [00:47:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:24] Reloading browsers +INFO - [00:47:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:25] Reloading browsers +INFO - [00:47:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:25] Reloading browsers +INFO - [00:47:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:26] Reloading browsers +INFO - [00:47:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:27] Reloading browsers +INFO - [00:47:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:28] Reloading browsers +INFO - [00:47:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:29] Reloading browsers +INFO - [00:47:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:29] Reloading browsers +INFO - [00:47:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:30] Reloading browsers +INFO - [00:47:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:31] Reloading browsers +INFO - [00:47:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:32] Reloading browsers +INFO - [00:47:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:33] Reloading browsers +INFO - [00:47:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:33] Reloading browsers +INFO - [00:47:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:34] Reloading browsers +INFO - [00:47:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:35] Reloading browsers +INFO - [00:47:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:36] Reloading browsers +INFO - [00:47:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:37] Reloading browsers +INFO - [00:47:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:37] Reloading browsers +INFO - [00:47:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:38] Reloading browsers +INFO - [00:47:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:39] Reloading browsers +INFO - [00:47:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:40] Reloading browsers +INFO - [00:47:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:40] Reloading browsers +INFO - [00:47:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:41] Reloading browsers +INFO - [00:47:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:42] Reloading browsers +INFO - [00:47:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:43] Reloading browsers +INFO - [00:47:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:44] Reloading browsers +INFO - [00:47:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:44] Reloading browsers +INFO - [00:47:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:45] Reloading browsers +INFO - [00:47:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:46] Reloading browsers +INFO - [00:47:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:47] Reloading browsers +INFO - [00:47:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:48] Reloading browsers +INFO - [00:47:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:48] Reloading browsers +INFO - [00:47:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:49] Reloading browsers +INFO - [00:47:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:50] Reloading browsers +INFO - [00:47:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:51] Reloading browsers +INFO - [00:47:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:52] Reloading browsers +INFO - [00:47:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:52] Reloading browsers +INFO - [00:47:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:53] Reloading browsers +INFO - [00:47:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:54] Reloading browsers +INFO - [00:47:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:55] Reloading browsers +INFO - [00:47:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:55] Reloading browsers +INFO - [00:47:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:56] Reloading browsers +INFO - [00:47:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:57] Reloading browsers +INFO - [00:47:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:58] Reloading browsers +INFO - [00:47:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:58] Reloading browsers +INFO - [00:47:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:47:59] Reloading browsers +INFO - [00:47:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:00] Reloading browsers +INFO - [00:48:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:01] Reloading browsers +INFO - [00:48:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:02] Reloading browsers +INFO - [00:48:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:02] Reloading browsers +INFO - [00:48:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:03] Reloading browsers +INFO - [00:48:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:04] Reloading browsers +INFO - [00:48:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:05] Reloading browsers +INFO - [00:48:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:06] Reloading browsers +INFO - [00:48:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:06] Reloading browsers +INFO - [00:48:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:07] Reloading browsers +INFO - [00:48:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:08] Reloading browsers +INFO - [00:48:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:09] Reloading browsers +INFO - [00:48:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:09] Reloading browsers +INFO - [00:48:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:10] Reloading browsers +INFO - [00:48:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:11] Reloading browsers +INFO - [00:48:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:12] Reloading browsers +INFO - [00:48:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:13] Reloading browsers +INFO - [00:48:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:14] Reloading browsers +INFO - [00:48:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:14] Reloading browsers +INFO - [00:48:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:15] Reloading browsers +INFO - [00:48:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:16] Reloading browsers +INFO - [00:48:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:17] Reloading browsers +INFO - [00:48:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:17] Reloading browsers +INFO - [00:48:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:18] Reloading browsers +INFO - [00:48:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:19] Reloading browsers +INFO - [00:48:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:20] Reloading browsers +INFO - [00:48:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:21] Reloading browsers +INFO - [00:48:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:21] Reloading browsers +INFO - [00:48:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:22] Reloading browsers +INFO - [00:48:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:23] Reloading browsers +INFO - [00:48:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:24] Reloading browsers +INFO - [00:48:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:25] Reloading browsers +INFO - [00:48:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:25] Reloading browsers +INFO - [00:48:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:26] Reloading browsers +INFO - [00:48:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:27] Reloading browsers +INFO - [00:48:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:28] Reloading browsers +INFO - [00:48:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:28] Reloading browsers +INFO - [00:48:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:29] Reloading browsers +INFO - [00:48:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:30] Reloading browsers +INFO - [00:48:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:31] Reloading browsers +INFO - [00:48:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:32] Reloading browsers +INFO - [00:48:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:32] Reloading browsers +INFO - [00:48:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:33] Reloading browsers +INFO - [00:48:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:34] Reloading browsers +INFO - [00:48:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:35] Reloading browsers +INFO - [00:48:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:35] Reloading browsers +INFO - [00:48:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:36] Reloading browsers +INFO - [00:48:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:37] Reloading browsers +INFO - [00:48:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:38] Reloading browsers +INFO - [00:48:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:39] Reloading browsers +INFO - [00:48:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:39] Reloading browsers +INFO - [00:48:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:40] Reloading browsers +INFO - [00:48:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:41] Reloading browsers +INFO - [00:48:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:42] Reloading browsers +INFO - [00:48:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:43] Reloading browsers +INFO - [00:48:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:44] Reloading browsers +INFO - [00:48:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:45] Reloading browsers +INFO - [00:48:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:45] Reloading browsers +INFO - [00:48:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:46] Reloading browsers +INFO - [00:48:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:47] Reloading browsers +INFO - [00:48:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:48] Reloading browsers +INFO - [00:48:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:49] Reloading browsers +INFO - [00:48:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:50] Reloading browsers +INFO - [00:48:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:50] Reloading browsers +INFO - [00:48:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:51] Reloading browsers +INFO - [00:48:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:52] Reloading browsers +INFO - [00:48:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:53] Reloading browsers +INFO - [00:48:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:54] Reloading browsers +INFO - [00:48:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:55] Reloading browsers +INFO - [00:48:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:56] Reloading browsers +INFO - [00:48:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:56] Reloading browsers +INFO - [00:48:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:57] Reloading browsers +INFO - [00:48:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:58] Reloading browsers +INFO - [00:48:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:48:59] Reloading browsers +INFO - [00:48:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:00] Reloading browsers +INFO - [00:49:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:01] Reloading browsers +INFO - [00:49:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:01] Reloading browsers +INFO - [00:49:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:02] Reloading browsers +INFO - [00:49:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:03] Reloading browsers +INFO - [00:49:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:04] Reloading browsers +INFO - [00:49:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:05] Reloading browsers +INFO - [00:49:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:06] Reloading browsers +INFO - [00:49:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:06] Reloading browsers +INFO - [00:49:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:07] Reloading browsers +INFO - [00:49:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:08] Reloading browsers +INFO - [00:49:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:09] Reloading browsers +INFO - [00:49:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:10] Reloading browsers +INFO - [00:49:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:11] Reloading browsers +INFO - [00:49:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:11] Reloading browsers +INFO - [00:49:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:12] Reloading browsers +INFO - [00:49:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:13] Reloading browsers +INFO - [00:49:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:14] Reloading browsers +INFO - [00:49:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:15] Reloading browsers +INFO - [00:49:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:16] Reloading browsers +INFO - [00:49:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:16] Reloading browsers +INFO - [00:49:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:17] Reloading browsers +INFO - [00:49:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:18] Reloading browsers +INFO - [00:49:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:19] Reloading browsers +INFO - [00:49:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:20] Reloading browsers +INFO - [00:49:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:21] Reloading browsers +INFO - [00:49:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:21] Reloading browsers +INFO - [00:49:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:22] Reloading browsers +INFO - [00:49:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:23] Reloading browsers +INFO - [00:49:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:24] Reloading browsers +INFO - [00:49:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:24] Reloading browsers +INFO - [00:49:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:25] Reloading browsers +INFO - [00:49:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:26] Reloading browsers +INFO - [00:49:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:27] Reloading browsers +INFO - [00:49:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:28] Reloading browsers +INFO - [00:49:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:28] Reloading browsers +INFO - [00:49:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:29] Reloading browsers +INFO - [00:49:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:30] Reloading browsers +INFO - [00:49:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:31] Reloading browsers +INFO - [00:49:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:32] Reloading browsers +INFO - [00:49:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:32] Reloading browsers +INFO - [00:49:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:33] Reloading browsers +INFO - [00:49:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:34] Reloading browsers +INFO - [00:49:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:35] Reloading browsers +INFO - [00:49:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:36] Reloading browsers +INFO - [00:49:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:36] Reloading browsers +INFO - [00:49:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:37] Reloading browsers +INFO - [00:49:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:38] Reloading browsers +INFO - [00:49:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:39] Reloading browsers +INFO - [00:49:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:40] Reloading browsers +INFO - [00:49:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:41] Reloading browsers +INFO - [00:49:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:41] Reloading browsers +INFO - [00:49:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:42] Reloading browsers +INFO - [00:49:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:43] Reloading browsers +INFO - [00:49:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:44] Reloading browsers +INFO - [00:49:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:44] Reloading browsers +INFO - [00:49:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:45] Reloading browsers +INFO - [00:49:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:46] Reloading browsers +INFO - [00:49:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:47] Reloading browsers +INFO - [00:49:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:48] Reloading browsers +INFO - [00:49:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:48] Reloading browsers +INFO - [00:49:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:49] Reloading browsers +INFO - [00:49:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:50] Reloading browsers +INFO - [00:49:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:51] Reloading browsers +INFO - [00:49:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:51] Reloading browsers +INFO - [00:49:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:52] Reloading browsers +INFO - [00:49:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:53] Reloading browsers +INFO - [00:49:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:54] Reloading browsers +INFO - [00:49:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:55] Reloading browsers +INFO - [00:49:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:55] Reloading browsers +INFO - [00:49:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:56] Reloading browsers +INFO - [00:49:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:57] Reloading browsers +INFO - [00:49:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:58] Reloading browsers +INFO - [00:49:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:58] Reloading browsers +INFO - [00:49:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:49:59] Reloading browsers +INFO - [00:49:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:00] Reloading browsers +INFO - [00:50:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:01] Reloading browsers +INFO - [00:50:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:02] Reloading browsers +INFO - [00:50:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:02] Reloading browsers +INFO - [00:50:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:03] Reloading browsers +INFO - [00:50:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:04] Reloading browsers +INFO - [00:50:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:05] Reloading browsers +INFO - [00:50:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:05] Reloading browsers +INFO - [00:50:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:06] Reloading browsers +INFO - [00:50:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:07] Reloading browsers +INFO - [00:50:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:08] Reloading browsers +INFO - [00:50:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:09] Reloading browsers +INFO - [00:50:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:09] Reloading browsers +INFO - [00:50:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:10] Reloading browsers +INFO - [00:50:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:11] Reloading browsers +INFO - [00:50:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:12] Reloading browsers +INFO - [00:50:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:13] Reloading browsers +INFO - [00:50:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:13] Reloading browsers +INFO - [00:50:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:14] Reloading browsers +INFO - [00:50:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:15] Reloading browsers +INFO - [00:50:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:16] Reloading browsers +INFO - [00:50:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:16] Reloading browsers +INFO - [00:50:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:17] Reloading browsers +INFO - [00:50:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:18] Reloading browsers +INFO - [00:50:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:19] Reloading browsers +INFO - [00:50:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:19] Reloading browsers +INFO - [00:50:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:20] Reloading browsers +INFO - [00:50:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:21] Reloading browsers +INFO - [00:50:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:22] Reloading browsers +INFO - [00:50:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:23] Reloading browsers +INFO - [00:50:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:23] Reloading browsers +INFO - [00:50:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:24] Reloading browsers +INFO - [00:50:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:25] Reloading browsers +INFO - [00:50:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:26] Reloading browsers +INFO - [00:50:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:26] Reloading browsers +INFO - [00:50:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:27] Reloading browsers +INFO - [00:50:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:28] Reloading browsers +INFO - [00:50:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:29] Reloading browsers +INFO - [00:50:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:29] Reloading browsers +INFO - [00:50:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:30] Reloading browsers +INFO - [00:50:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:31] Reloading browsers +INFO - [00:50:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:32] Reloading browsers +INFO - [00:50:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:33] Reloading browsers +INFO - [00:50:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:33] Reloading browsers +INFO - [00:50:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:34] Reloading browsers +INFO - [00:50:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:35] Reloading browsers +INFO - [00:50:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:36] Reloading browsers +INFO - [00:50:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:36] Reloading browsers +INFO - [00:50:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:37] Reloading browsers +INFO - [00:50:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:38] Reloading browsers +INFO - [00:50:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:39] Reloading browsers +INFO - [00:50:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:39] Reloading browsers +INFO - [00:50:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:40] Reloading browsers +INFO - [00:50:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:41] Reloading browsers +INFO - [00:50:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:42] Reloading browsers +INFO - [00:50:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:43] Reloading browsers +INFO - [00:50:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:43] Reloading browsers +INFO - [00:50:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:44] Reloading browsers +INFO - [00:50:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:45] Reloading browsers +INFO - [00:50:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Documentation built in 0.60 seconds +INFO - [00:50:46] Reloading browsers +INFO - [00:50:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:46] Reloading browsers +INFO - [00:50:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:47] Reloading browsers +INFO - [00:50:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:48] Reloading browsers +INFO - [00:50:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:49] Reloading browsers +INFO - [00:50:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:49] Reloading browsers +INFO - [00:50:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:50] Reloading browsers +INFO - [00:50:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:51] Reloading browsers +INFO - [00:50:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:52] Reloading browsers +INFO - [00:50:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:53] Reloading browsers +INFO - [00:50:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:53] Reloading browsers +INFO - [00:50:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:54] Reloading browsers +INFO - [00:50:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:55] Reloading browsers +INFO - [00:50:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:56] Reloading browsers +INFO - [00:50:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:56] Reloading browsers +INFO - [00:50:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:57] Reloading browsers +INFO - [00:50:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:58] Reloading browsers +INFO - [00:50:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:59] Reloading browsers +INFO - [00:50:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:50:59] Reloading browsers +INFO - [00:50:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:00] Reloading browsers +INFO - [00:51:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:01] Reloading browsers +INFO - [00:51:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:02] Reloading browsers +INFO - [00:51:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:03] Reloading browsers +INFO - [00:51:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:03] Reloading browsers +INFO - [00:51:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:04] Reloading browsers +INFO - [00:51:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:05] Reloading browsers +INFO - [00:51:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:06] Reloading browsers +INFO - [00:51:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:06] Reloading browsers +INFO - [00:51:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:07] Reloading browsers +INFO - [00:51:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:08] Reloading browsers +INFO - [00:51:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:09] Reloading browsers +INFO - [00:51:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:09] Reloading browsers +INFO - [00:51:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:10] Reloading browsers +INFO - [00:51:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:11] Reloading browsers +INFO - [00:51:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:12] Reloading browsers +INFO - [00:51:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:13] Reloading browsers +INFO - [00:51:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:13] Reloading browsers +INFO - [00:51:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:14] Reloading browsers +INFO - [00:51:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:15] Reloading browsers +INFO - [00:51:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:16] Reloading browsers +INFO - [00:51:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:16] Reloading browsers +INFO - [00:51:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:17] Reloading browsers +INFO - [00:51:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:18] Reloading browsers +INFO - [00:51:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:19] Reloading browsers +INFO - [00:51:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:19] Reloading browsers +INFO - [00:51:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:20] Reloading browsers +INFO - [00:51:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:21] Reloading browsers +INFO - [00:51:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:22] Reloading browsers +INFO - [00:51:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:23] Reloading browsers +INFO - [00:51:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:23] Reloading browsers +INFO - [00:51:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:24] Reloading browsers +INFO - [00:51:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:25] Reloading browsers +INFO - [00:51:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:26] Reloading browsers +INFO - [00:51:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:26] Reloading browsers +INFO - [00:51:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:27] Reloading browsers +INFO - [00:51:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:28] Reloading browsers +INFO - [00:51:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:29] Reloading browsers +INFO - [00:51:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:29] Reloading browsers +INFO - [00:51:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:30] Reloading browsers +INFO - [00:51:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:31] Reloading browsers +INFO - [00:51:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:32] Reloading browsers +INFO - [00:51:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:33] Reloading browsers +INFO - [00:51:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:33] Reloading browsers +INFO - [00:51:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:34] Reloading browsers +INFO - [00:51:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:35] Reloading browsers +INFO - [00:51:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:36] Reloading browsers +INFO - [00:51:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:36] Reloading browsers +INFO - [00:51:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:37] Reloading browsers +INFO - [00:51:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:38] Reloading browsers +INFO - [00:51:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:39] Reloading browsers +INFO - [00:51:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:39] Reloading browsers +INFO - [00:51:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:40] Reloading browsers +INFO - [00:51:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:41] Reloading browsers +INFO - [00:51:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:42] Reloading browsers +INFO - [00:51:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:43] Reloading browsers +INFO - [00:51:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:43] Reloading browsers +INFO - [00:51:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:44] Reloading browsers +INFO - [00:51:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:45] Reloading browsers +INFO - [00:51:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:46] Reloading browsers +INFO - [00:51:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:46] Reloading browsers +INFO - [00:51:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:47] Reloading browsers +INFO - [00:51:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:48] Reloading browsers +INFO - [00:51:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:49] Reloading browsers +INFO - [00:51:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:50] Reloading browsers +INFO - [00:51:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:50] Reloading browsers +INFO - [00:51:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:51] Reloading browsers +INFO - [00:51:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:52] Reloading browsers +INFO - [00:51:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:53] Reloading browsers +INFO - [00:51:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:53] Reloading browsers +INFO - [00:51:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:54] Reloading browsers +INFO - [00:51:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:55] Reloading browsers +INFO - [00:51:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:56] Reloading browsers +INFO - [00:51:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:57] Reloading browsers +INFO - [00:51:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:57] Reloading browsers +INFO - [00:51:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:58] Reloading browsers +INFO - [00:51:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:51:59] Reloading browsers +INFO - [00:51:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:00] Reloading browsers +INFO - [00:52:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:00] Reloading browsers +INFO - [00:52:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:01] Reloading browsers +INFO - [00:52:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:02] Reloading browsers +INFO - [00:52:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:03] Reloading browsers +INFO - [00:52:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:04] Reloading browsers +INFO - [00:52:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:04] Reloading browsers +INFO - [00:52:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:05] Reloading browsers +INFO - [00:52:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:06] Reloading browsers +INFO - [00:52:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:07] Reloading browsers +INFO - [00:52:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:07] Reloading browsers +INFO - [00:52:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:08] Reloading browsers +INFO - [00:52:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:09] Reloading browsers +INFO - [00:52:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:10] Reloading browsers +INFO - [00:52:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:10] Reloading browsers +INFO - [00:52:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:11] Reloading browsers +INFO - [00:52:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:12] Reloading browsers +INFO - [00:52:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:13] Reloading browsers +INFO - [00:52:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:14] Reloading browsers +INFO - [00:52:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:14] Reloading browsers +INFO - [00:52:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:15] Reloading browsers +INFO - [00:52:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:16] Reloading browsers +INFO - [00:52:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:17] Reloading browsers +INFO - [00:52:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:17] Reloading browsers +INFO - [00:52:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:18] Reloading browsers +INFO - [00:52:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:19] Reloading browsers +INFO - [00:52:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:20] Reloading browsers +INFO - [00:52:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:21] Reloading browsers +INFO - [00:52:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:21] Reloading browsers +INFO - [00:52:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:22] Reloading browsers +INFO - [00:52:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:23] Reloading browsers +INFO - [00:52:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:24] Reloading browsers +INFO - [00:52:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:24] Reloading browsers +INFO - [00:52:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:25] Reloading browsers +INFO - [00:52:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:26] Reloading browsers +INFO - [00:52:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:27] Reloading browsers +INFO - [00:52:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:27] Reloading browsers +INFO - [00:52:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:28] Reloading browsers +INFO - [00:52:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:29] Reloading browsers +INFO - [00:52:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:30] Reloading browsers +INFO - [00:52:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:31] Reloading browsers +INFO - [00:52:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:31] Reloading browsers +INFO - [00:52:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:32] Reloading browsers +INFO - [00:52:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:33] Reloading browsers +INFO - [00:52:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:34] Reloading browsers +INFO - [00:52:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:34] Reloading browsers +INFO - [00:52:34] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:35] Reloading browsers +INFO - [00:52:35] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:36] Reloading browsers +INFO - [00:52:36] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:37] Reloading browsers +INFO - [00:52:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:37] Reloading browsers +INFO - [00:52:37] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:38] Reloading browsers +INFO - [00:52:38] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:39] Reloading browsers +INFO - [00:52:39] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:40] Reloading browsers +INFO - [00:52:40] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:41] Reloading browsers +INFO - [00:52:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:41] Reloading browsers +INFO - [00:52:41] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:42] Reloading browsers +INFO - [00:52:42] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:43] Reloading browsers +INFO - [00:52:43] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:44] Reloading browsers +INFO - [00:52:44] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:45] Reloading browsers +INFO - [00:52:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:45] Reloading browsers +INFO - [00:52:45] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:46] Reloading browsers +INFO - [00:52:46] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:47] Reloading browsers +INFO - [00:52:47] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:48] Reloading browsers +INFO - [00:52:48] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:49] Reloading browsers +INFO - [00:52:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:49] Reloading browsers +INFO - [00:52:49] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:50] Reloading browsers +INFO - [00:52:50] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:51] Reloading browsers +INFO - [00:52:51] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:52] Reloading browsers +INFO - [00:52:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:52] Reloading browsers +INFO - [00:52:52] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:53] Reloading browsers +INFO - [00:52:53] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:54] Reloading browsers +INFO - [00:52:54] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:55] Reloading browsers +INFO - [00:52:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:55] Reloading browsers +INFO - [00:52:55] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:56] Reloading browsers +INFO - [00:52:56] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:57] Reloading browsers +INFO - [00:52:57] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:58] Reloading browsers +INFO - [00:52:58] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:59] Reloading browsers +INFO - [00:52:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:52:59] Reloading browsers +INFO - [00:52:59] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:00] Reloading browsers +INFO - [00:53:00] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:01] Reloading browsers +INFO - [00:53:01] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:02] Reloading browsers +INFO - [00:53:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:02] Reloading browsers +INFO - [00:53:02] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:03] Reloading browsers +INFO - [00:53:03] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:04] Reloading browsers +INFO - [00:53:04] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:05] Reloading browsers +INFO - [00:53:05] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:06] Reloading browsers +INFO - [00:53:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:06] Reloading browsers +INFO - [00:53:06] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:07] Reloading browsers +INFO - [00:53:07] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:08] Reloading browsers +INFO - [00:53:08] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:09] Reloading browsers +INFO - [00:53:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:09] Reloading browsers +INFO - [00:53:09] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:10] Reloading browsers +INFO - [00:53:10] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:11] Reloading browsers +INFO - [00:53:11] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:12] Reloading browsers +INFO - [00:53:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:12] Reloading browsers +INFO - [00:53:12] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:13] Reloading browsers +INFO - [00:53:13] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:14] Reloading browsers +INFO - [00:53:14] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:15] Reloading browsers +INFO - [00:53:15] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:15] Reloading browsers +INFO - [00:53:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:16] Reloading browsers +INFO - [00:53:16] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:17] Reloading browsers +INFO - [00:53:17] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:18] Reloading browsers +INFO - [00:53:18] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:19] Reloading browsers +INFO - [00:53:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:19] Reloading browsers +INFO - [00:53:19] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:20] Reloading browsers +INFO - [00:53:20] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:21] Reloading browsers +INFO - [00:53:21] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:22] Reloading browsers +INFO - [00:53:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:22] Reloading browsers +INFO - [00:53:22] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:23] Reloading browsers +INFO - [00:53:23] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:24] Reloading browsers +INFO - [00:53:24] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:25] Reloading browsers +INFO - [00:53:25] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:26] Reloading browsers +INFO - [00:53:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:26] Reloading browsers +INFO - [00:53:26] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:27] Reloading browsers +INFO - [00:53:27] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:28] Reloading browsers +INFO - [00:53:28] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:29] Reloading browsers +INFO - [00:53:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:29] Reloading browsers +INFO - [00:53:29] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:30] Reloading browsers +INFO - [00:53:30] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:31] Reloading browsers +INFO - [00:53:31] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:32] Reloading browsers +INFO - [00:53:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:32] Reloading browsers +INFO - [00:53:32] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:33] Reloading browsers +INFO - [00:53:33] Detected file changes +INFO - Building documentation... +INFO - The following pages exist in the docs directory, but are not included in the "nav" configuration: + - README.md + - CHANGELOG.md + - CODE_OF_CONDUCT.md + - common/README.md + - docs/development/create_new_project.md + - docs/development/development_environment.md + - docs/development/documentation.md + - docs/robot/autonomy/index.md + - docs/robot/logging/data_offloading.md + - docs/robot/logging/rosbags.md + - docs/simulation/docker_network.md + - ground_control_station/installation/README.md + - ground_control_station/ros_ws/README.md + - ground_control_station/ros_ws/src/mission_manager/README.md + - ground_control_station/ros_ws/src/ros2tak_tools/README.md + - ground_control_station/ros_ws/src/rqt_ground_control_station/README.md + - ground_control_station/ros_ws/src/rqt_py_template/README.md + - robot/installation/README.md + - robot/ros_ws/src/autonomy/3_local/a_world_models/disparity_expansion/README.md + - robot/ros_ws/src/autonomy/3_local/b_planners/takeoff_landing_planner/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/mav_comm/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/README.md + - robot/ros_ws/src/autonomy/3_local/c_controls/px4_msgs/CONTRIBUTING.md + - robot/ros_ws/src/autonomy/5_behavior/rqt_fixed_trajectory_generator/README.md + - simulation/gazebo/README.md + - simulation/isaac-sim/sitl_integration/docs/README.md + - simulation/isaac-sim/sitl_integration/docs/CHANGELOG.md + - simulation/isaac-sim/sitl_integration/drag_and_drop/README.md +WARNING - A reference to 'robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md' is included in the 'nav' configuration, which is not found in the documentation files. +WARNING - Doc file 'docs/robot/common_topics.md' contains a link '4_global/planning.md', but the target 'docs/robot/4_global/planning.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '2_perception/README.md', but the target 'docs/robot/autonomy/2_perception/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '3_local/README.md', but the target 'docs/robot/autonomy/3_local/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '4_global/README.md', but the target 'docs/robot/autonomy/4_global/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link '5_behavior/README.md', but the target 'docs/robot/autonomy/5_behavior/README.md' is not found among documentation files. +WARNING - Doc file 'docs/robot/autonomy/index.md' contains a link 'airstack_system_diagram.png', but the target 'docs/robot/autonomy/airstack_system_diagram.png' is not found among documentation files. +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - Doc file 'robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md' contains an absolute link '/common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv', it was left as is. Did you mean '../../../../../../../common/ros_packages/airstack_msgs/srv/TrajectoryMode.srv'? +INFO - [00:53:34] Reloading browsers +INFO - [00:53:34] Detected file changes +INFO - Building documentation... diff --git a/mkdocs.yml b/mkdocs.yml index e3696f69b..9bfcb2296 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -18,6 +18,8 @@ extra_css: - stylesheets/extra.css markdown_extensions: - admonition + - attr_list + - md_in_html - pymdownx.highlight: anchor_linenums: true line_spans: __span @@ -125,6 +127,7 @@ repo_name: castacks/AirStack repo_url: https://github.com/castacks/AirStack theme: favicon: docs/assets/StackedWhite.png + custom_dir: docs/overrides features: - navigation.indexes - navigation.path